diff options
author | Frederick Muriuki Muriithi | 2023-08-07 12:22:55 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-08-07 12:29:09 +0300 |
commit | d88ef631a78c32baed34a126d79f4679a2f09d10 (patch) | |
tree | fa98d5125cb5d8c82e6bd0669853cb186301978a | |
parent | 91061a7b4af2aaa7c7c97d0cd215a0dc28a42419 (diff) | |
download | gn-auth-d88ef631a78c32baed34a126d79f4679a2f09d10.tar.gz |
Add documentation on expected checks.
-rw-r--r-- | README.md | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -2,3 +2,26 @@ This project is for the GeneNetwork Authentication/Authorisation server to be used across the entire suite of the GeneNetwork services. + + + +## Checks + +### Linting + +```bash +pylint *py tests gn3 scripts +``` + +### Type-Checking + +```bash +mypy --show-error-codes . +``` + +### Running Tests + +```bash +export AUTHLIB_INSECURE_TRANSPORT=true +pytest -k unit_test +``` |