diff options
| -rw-r--r-- | python/Makefile | 3 |
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 # |
