diff --git a/c/Makefile b/c/Makefile index b2d8a756..b3975a14 100644 --- a/c/Makefile +++ b/c/Makefile @@ -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 diff --git a/cplusplus/Makefile b/cplusplus/Makefile index a7f9f47e..8b363ebb 100644 --- a/cplusplus/Makefile +++ b/cplusplus/Makefile @@ -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) @@ -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