7 lines
119 B
Bash
7 lines
119 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
pytest --cov=app --cov=tests --cov-report=term-missing --cov-config=setup.cfg ${@}
|