Skip to content

Commit 6ae4672

Browse files
committed
Drop cov-config option
1 parent c0f1398 commit 6ae4672

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

template/Makefile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ integration-test: install ## Run {{project_name}} integration tests
6262
.PHONY: coverage
6363
coverage: install ## Run {{project_name}} tests coverage
6464
echo "[coverage] Run {{project_name}} tests coverage."
65-
${POETRY_BINARY} run pytest --cov-config=.coveragerc --cov={{package_name}} --cov-fail-under=90 --cov-report=xml --cov-report=term-missing tests
65+
${POETRY_BINARY} run pytest --cov={{package_name}} --cov-fail-under=90 --cov-report=xml --cov-report=term-missing tests
6666

6767
.PHONY: test
6868
test: unit-test integration-test ## Run {{project_name}} tests

template/{% if nix %}flake.nix{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
pkgs.coreutils
115115
]}"
116116
echo "[nix][coverage] Run {{project_name}} tests coverage."
117-
pytest --cov-config=.coveragerc --cov={{package_name}} --cov-fail-under=90 --cov-report=xml --cov-report=term-missing tests
117+
pytest --cov={{package_name}} --cov-fail-under=90 --cov-report=xml --cov-report=term-missing tests
118118
'');
119119
};
120120
test = {

0 commit comments

Comments
 (0)