From af4765db8afc4e9242bb72e5b4bfb04f4cb37391 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Tue, 7 May 2024 14:07:08 +0200 Subject: Remove unitest shell script - Use Makefile instead --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3