Add test script
This commit is contained in:
parent
534d2a491e
commit
80788c95ca
2 changed files with 10 additions and 2 deletions
|
@ -10,5 +10,4 @@ jobs:
|
|||
- run: python -m venv env
|
||||
- run: env/bin/pip install -e .
|
||||
- run: env/bin/pip install -r dev-requirements.txt
|
||||
- run: env/bin/python setup.py test
|
||||
- run: env/bin/black tests ipc_unix
|
||||
- run: ./scripts/test.sh
|
||||
|
|
9
scripts/test.sh
Executable file
9
scripts/test.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
export PATH=env/bin:${PATH}
|
||||
|
||||
python setup.py test
|
||||
|
||||
black tests ipc_unix
|
Reference in a new issue