From d0776a34b811a21eb96f3fd598f8b2d1f421eea6 Mon Sep 17 00:00:00 2001 From: nivlekp Date: Sat, 16 Mar 2024 12:57:32 +1100 Subject: [PATCH] let the testpaths field in pytest.ini to specify test paths --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index bf47e5f5ab4..d68696a0e40 100644 --- a/Makefile +++ b/Makefile @@ -80,18 +80,17 @@ mypy: project = abjad pytest: - pytest . + pytest pytest-coverage: rm -Rf htmlcov/ pytest \ --cov-config=.coveragerc \ --cov-report=html \ - --cov=${project} \ - . + --cov=${project} pytest-x: - pytest -x . + pytest -x reformat: make black-reformat