Skip to content

Commit 5112fba

Browse files
committed
Add target to run unit tests without coverage
Signed-off-by: Patrick McCarty <[email protected]>
1 parent 3189708 commit 5112fba

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,8 @@ test_general:
5252
unittests:
5353
PYTHONPATH=${CURDIR}/autospec coverage run -m unittest discover -b -s tests -p 'test_*.py' && coverage report
5454

55+
unittests-no-coverage:
56+
PYTHONPATH=${CURDIR}/autospec python3 -m unittest discover -b -s tests -p 'test_*.py'
57+
5558
coverage:
5659
coverage report -m

0 commit comments

Comments
 (0)