File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -87,23 +87,23 @@ venv-dev-upgrade: ## Upgrade Python 3 dev dependencies
87
87
# ===================================================================
88
88
89
89
test-core : # # Run core unit tests
90
- ./venv/bin/python ./unittest -core.py
90
+ $( PYTHON ) $( UNITTEST ) -core.py
91
91
92
92
test-restful : # # Run Restful unit tests
93
- ./venv/bin/python ./unittest -restful.py
93
+ $( PYTHON ) $( UNITTEST ) -restful.py
94
94
95
95
test-xmlrpc : # # Run XMLRPC unit tests
96
- ./venv/bin/python ./unittest -xmlrpc.py
96
+ $( PYTHON ) $( UNITTEST ) -xmlrpc.py
97
97
98
98
test : test-core test-restful test-xmlrpc # # Run unit tests
99
99
100
100
test-with-upgrade : venv-upgrade venv-dev-upgrade test # # Upgrade deps and run unit tests
101
101
102
102
test-min : # # Run core unit tests in minimal environment
103
- ./venv-min/bin/ python ./unittest -core.py
103
+ $( VENV_MIN ) / python $( UNITTEST ) -core.py
104
104
105
105
test-min-with-upgrade : venv-min-upgrade # # Upgrade deps and run unit tests in minimal environment
106
- ./venv-min/bin/ python ./unittest -core.py
106
+ $( VENV_MIN ) / python $( UNITTEST ) -core.py
107
107
108
108
# ===================================================================
109
109
# Linters, profilers and cyber security
You can’t perform that action at this time.
0 commit comments