1
0
Fork 0

fix(build): remove unittest from CI install list, add coverage output to git ignore

This commit is contained in:
Sean Sube 2023-01-06 13:16:48 -06:00
parent 1cd3bd8cc0
commit 16b7bded25
2 changed files with 6 additions and 2 deletions

4
api/.gitignore vendored
View File

@ -1,3 +1,7 @@
.coverage
coverage.xml
__pycache__/
htmlcov/
onnx_env/
venv/

View File

@ -4,7 +4,7 @@ onnx_env: ## create virtual env
python -v venv onnx_env
ci: pip
pip install coverage hypothesis unittest
pip install coverage hypothesis
$(MAKE) test
pip: