From 5aaed3c89f7f5e3b4d88cfd7183fc168d5cd0b66 Mon Sep 17 00:00:00 2001 From: Eugene Kalinin Date: Tue, 28 May 2024 21:40:26 +0300 Subject: [PATCH] Makefile: fixed tests target (regression tests) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f2f67cb..92a7557 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: default deploy deploy-github deploy-pypi update-pypi clean tests env TEST_ENV=env DEV_TEST_ENV=env-dev -SETUP=python setup.py install > /dev/null +SETUP=pip install -U pip setuptools && python setup.py install > /dev/null default: : do nothing when dpkg-buildpackage runs this project Makefile