blob: 493ec77303d36e99b20d79efe452f470d95b0c68 (
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
28
29
30
|
# gn-libs: GeneNetwork Libraries
This is a collection of tools/utilities that find use in more than one
GeneNetwork project.
## Installing
* TODO: Document this
## Developing
### Code Checks: Linting and Typing
Run linter
```sh
pylint $(find gn_libs -name '*.py')
```
Run mypy
```sh
mypy --show-error-codes .
```
### Running Tests
Use the following command to run unit tests.
```sh
pytest -k unit_test
```
|