1
0
Fork 0

fix(build): install coverage in python build

This commit is contained in:
Sean Sube 2023-01-06 12:53:41 -06:00
parent 8d3ca31fef
commit 32c7701c85
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,9 @@
onnx_env: ## create virtual env
python -v venv onnx_env
ci: pip test
ci: pip
pip install coverage
$(MAKE) test
pip:
if [ -z $${VIRTUAL_ENV+x} ]; then echo "Are you sure you want to install dependencies outside of a virtual environment?"; sleep 30; fi