moving test runner to script
This commit is contained in:
parent
ef1496fdda
commit
d5d44cad73
|
|
@ -6,7 +6,7 @@ steps:
|
||||||
image: python
|
image: python
|
||||||
commands:
|
commands:
|
||||||
- pip install -r requirements_test.txt
|
- pip install -r requirements_test.txt
|
||||||
- pytest --cov=. --cov-report term-missing
|
- ./scripts/run_tests.sh
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
username:
|
username:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
cd lockbox
|
||||||
|
pytest --cov=. --cov-report term-missing
|
||||||
Loading…
Reference in New Issue