aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/README.md b/README.md
index 7bf6f9c..f076ce1 100644
--- a/README.md
+++ b/README.md
@@ -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
+```