summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authornicolargo <nicolashennion@gmail.com>2024-05-07 14:01:36 +0200
committernicolargo <nicolashennion@gmail.com>2024-05-07 14:01:36 +0200
commit8e8d4ce89b2888187125655d900ffcb02fc6e39e (patch)
tree09840b0199cde53718dfd443b1bffb699e27f1d4 /Makefile
parente8563a0fc4b0c0663f354deb0b846421f94a9f95 (diff)
Rename unitest to unittest - Related to #2757
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 57d96606..b9e80e63 100644
--- a/Makefile
+++ b/Makefile
@@ -63,25 +63,25 @@ venv-dev-upgrade: ## Upgrade Python 3 dev dependencies
# ===================================================================
test: ## Run unit tests
- ./venv/bin/python ./unitest.py
- ./venv/bin/python ./unitest-restful.py
- ./venv/bin/python ./unitest-xmlrpc.py
+ ./venv/bin/python ./unittest.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 ./unitest.py
- ./venv/bin/python ./unitest-restful.py
- ./venv/bin/python ./unitest-xmlrpc.py
+ ./venv/bin/python ./unittest.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 ./unitest.py
+ ./venv-min/bin/python ./unittest.py
test-min-with-upgrade: venv-min-upgrade ## Upgrade deps and run unit tests in minimal environment
- ./venv-min/bin/python ./unitest.py
+ ./venv-min/bin/python ./unittest.py
test-restful-api: ## Run unit tests of the RESTful API
- ./venv/bin/python ./unitest-restful.py
+ ./venv/bin/python ./unittest-restful.py
# ===================================================================
# Linters, profilers and cyber security