Merge branch 'release_25.0' into dev

This commit is contained in:
Nicola Soranzo
2025-06-21 18:09:07 +01:00
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ clean-tests:
rm -fr .tox/
setup-venv:
if [ ! -d $(VENV) ]; then virtualenv $(VENV); exit; fi;
if [ ! -d $(VENV) ]; then python -m venv $(VENV); exit; fi;
$(IN_VENV) pip install -r dev-requirements.txt
test:
+2 -1
View File
@@ -42,12 +42,13 @@ clean-pyc:
clean-tests:
rm -fr .tox/
# Removing .venv instead of $(VENV) is intentional, because we can't guarantee we created $(VENV)
clean-web-client:
rm -rf .venv
rm -rf galaxy/web_client/dist galaxy/web_client/client_build_hash.txt
setup-venv:
if [ ! -d $(VENV) ]; then virtualenv $(VENV); exit; fi;
if [ ! -d $(VENV) ]; then python -m venv $(VENV); exit; fi;
$(IN_VENV) pip install -r dev-requirements.txt
test: