Skip to content

Commit

Permalink
Cover the test runner again
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 26, 2024
1 parent a3a5e65 commit bda4a7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion c/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ help:

test_%: dependencies
cd ../python; $(MAKE) dependencies $(MFLAGS)
$(PY) -m pytest -vl -n$* test_euler.py
$(PY) -m pytest -vl -n$* test_euler.py --cov

test: dependencies
$(PY) -m pytest -vl --benchmark-sort=fullname --benchmark-group-by=fullfunc --benchmark-verbose test_euler.py
Expand Down
4 changes: 2 additions & 2 deletions cplusplus/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PY?=python3
USER_FLAG?=--user
PIP?=$(PY) -m pip
BLUE=\033[0;34m
NC=\033[0m # No Color
NC=\033[0m # No Color

ifneq ($(https_proxy), )
PROXY_ARG=--proxy=$(https_proxy)
Expand All @@ -23,7 +23,7 @@ help:

test_%: dependencies
cd ../python; $(MAKE) dependencies $(MFLAGS)
$(PY) -m pytest -vl -n$* test_euler.py
$(PY) -m pytest -vl -n$* test_euler.py --cov

test: dependencies
$(PY) -m pytest -vl --benchmark-sort=fullname --benchmark-group-by=fullfunc --benchmark-verbose test_euler.py
Expand Down

0 comments on commit bda4a7e

Please sign in to comment.