blob: f076ce16b684282aa5e5448f847f852ff6645392 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# GeneNetwork Auth
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
```
|