aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2021-01-14 21:22:45 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2021-01-14 21:22:45 +0000
commite624c0eb3af6fc7521875249362994af6b57a451 (patch)
tree5ec49d7e394b49be212929842b4afdc5a2e7d55b
parentAllow bypassing of virtualenv (diff)
downloadSyncRNG-e624c0eb3af6fc7521875249362994af6b57a451.tar.gz
SyncRNG-e624c0eb3af6fc7521875249362994af6b57a451.zip
Don't use green when testing directly
-rw-r--r--python/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/Makefile b/python/Makefile
index 8c2fca6..87a5921 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -57,7 +57,8 @@ test: venv ## Run nosetests using the default nosetests command
source $(VENV_DIR)/bin/activate && green -a -vv ./tests
test_direct:
- pip install -e .[dev] && green -a -vv ./tests
+ pip install wheel && pip install . && \
+ python -m unittest discover ./tests
#######################
# Virtual environment #