Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rschmied committed Mar 8, 2023
1 parent a2b30ac commit bb8d90e
Show file tree
Hide file tree
Showing 3 changed files with 476 additions and 451 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
.PHONY: clean devinstall export help tests
.PHONY: clean devinstall distclean export help tests

clean: ## clean up the directory
rm -rf .mypy_cache .pytest_cache
rm -f .coverage coverage.xml coverage.lcov
rm -rf dist
find src -depth -name __pycache__ -exec rm -rf {} \;

distclean: clean; ## clean and also remove the venv
rm -rf .venv

tests: ## run all unit tests
coverage run -m pytest tests
Expand Down
Loading

0 comments on commit bb8d90e

Please sign in to comment.