Skip to content

Commit

Permalink
Fix Makefile and pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
hipek8 committed Dec 13, 2024
1 parent 9b154c7 commit 3505b32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ flake: isort
@cat scripts/flake.txt

clean:
find . -name '*.py[cod]' -exec rm -rf {} \;
find . -name '*.py[cod]' -delete;

coverage: clean
coverage run $(shell which test_ralph) test $(TEST) -v 2 --keepdb --settings="ralph.settings.test"
coverage run $(command -v test_ralph) test $(TEST) -v 2 --keepdb --settings="ralph.settings.test"
coverage report

docs: install-docs
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools<66.0"]
build-backend = "setuptools.build_meta"

[tools.coverage.run]
sources = ralph
source = ralph
branch = 1

[tools.coverage.report]
Expand Down

0 comments on commit 3505b32

Please sign in to comment.