summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authornicolargo <nicolashennion@gmail.com>2024-05-07 14:07:08 +0200
committernicolargo <nicolashennion@gmail.com>2024-05-07 14:07:08 +0200
commitaf4765db8afc4e9242bb72e5b4bfb04f4cb37391 (patch)
tree0d5e0eb7f83b3524adceca83aa2d6ee1842b633a /Makefile
parent8e8d4ce89b2888187125655d900ffcb02fc6e39e (diff)
Remove unitest shell script - Use Makefile instead
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b9e80e63..80ad0b1a 100644
--- a/Makefile
+++ b/Makefile
@@ -63,22 +63,22 @@ venv-dev-upgrade: ## Upgrade Python 3 dev dependencies
# ===================================================================
test: ## Run unit tests
- ./venv/bin/python ./unittest.py
+ ./venv/bin/python ./unittest-core.py
./venv/bin/python ./unittest-restful.py
./venv/bin/python ./unittest-xmlrpc.py
./venv-dev/bin/python -m black ./glances --check --exclude outputs/static
test-with-upgrade: venv-upgrade venv-dev-upgrade ## Upgrade deps and run unit tests
- ./venv/bin/python ./unittest.py
+ ./venv/bin/python ./unittest-core.py
./venv/bin/python ./unittest-restful.py
./venv/bin/python ./unittest-xmlrpc.py
./venv/bin-dev/python -m black ./glances --check --exclude outputs/static
test-min: ## Run unit tests in minimal environment
- ./venv-min/bin/python ./unittest.py
+ ./venv-min/bin/python ./unittest-core.py
test-min-with-upgrade: venv-min-upgrade ## Upgrade deps and run unit tests in minimal environment
- ./venv-min/bin/python ./unittest.py
+ ./venv-min/bin/python ./unittest-core.py
test-restful-api: ## Run unit tests of the RESTful API
./venv/bin/python ./unittest-restful.py