From bda4a7e91f973f30362bd61748e64507ab69e34b Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Fri, 26 Jul 2024 01:22:07 -0500 Subject: [PATCH] Cover the test runner again --- c/Makefile | 2 +- cplusplus/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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