From 3505b32c31692d4274ad45f25935058c825214d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Szulc?= Date: Fri, 13 Dec 2024 15:18:05 +0100 Subject: [PATCH] Fix Makefile and pyproject.toml --- Makefile | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2f6acab2f3..df8587d290 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 7ec7a7d428..b5f2c8a9c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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]