Skip to content

Commit

Permalink
clean and git ignore all coverage reports (#2443)
Browse files Browse the repository at this point in the history
* git ignore all coverage reports

* make clean to delete all coverage reports
  • Loading branch information
cosenal authored Jul 10, 2024
1 parent 0961fb8 commit 7984127
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
.vscode
.python-version
.idea/
.coverage
*.dat
*.ipynb
*.hdf5
Expand All @@ -14,5 +13,9 @@ docs/build/
mitiq.egg-info/
dist/
build/
coverage.xml
jupyter_execute/

# Coverage reports
coverage.xml
.coverage
.coverage.*
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ clean:
rm -rf dist
rm -rf mitiq.egg-info
rm -rf .mypy_cache .pytest_cache .ruff_cache
rm -rf htmlcov coverage.xml .coverage
rm -rf htmlcov coverage.xml .coverage .coverage.*
rm -rf .ipynb_checkpoints

.PHONY: dist
Expand Down

0 comments on commit 7984127

Please sign in to comment.