File: run_tests.sh

package info (click to toggle)
python-pyhcl 0.4.4-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 664 kB
  • sloc: python: 3,833; makefile: 25; sh: 6
file content (9 lines) | stat: -rwxr-xr-x 148 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/bin/bash

pip install -e .
python -m coverage run --source hcl -m pytest tests
if [ "$?" != "0" ]; then
	exit 1
fi

python -m coverage report -m