diff options
-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 +``` |