1
0
Fork 0

Add "state" tests

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2021-02-12 09:43:38 +01:00
commit 14aa8a6d59
No known key found for this signature in database
GPG key ID: FF42D23B580C89F7
21 changed files with 116 additions and 3 deletions

View file

@ -61,7 +61,7 @@ All options are optional (but the companion would do nothing).
## Usage
```
python3 main.py --help
python3 companion/main.py --help
```
@ -69,12 +69,14 @@ python3 main.py --help
Contributions are welcomed! Feel free to update the code and create a pull-request.
Be sure to lint the code before:
Be sure to lint the code and run tests before:
```
docker build -t pre-commit .
docker run -it -v $(pwd):/mnt/ --rm pre-commit bash
# cd /mnt/
# pip install -r requirements.txt
# pre-commit run --all-files
# pytest
# exit
```