1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 12:42:41 +00:00

fixed remaining python3s in makefile

This commit is contained in:
Bastian Venthur
2021-01-16 20:13:56 +01:00
parent 05db61da55
commit 961f65ae1a

View File

@@ -11,15 +11,15 @@ $(VENV): requirements.txt requirements-dev.txt setup.py
touch $(VENV)
test:
$(VENV)/bin/python -m pytest
$(VENV)/bin/python3 -m pytest
.PHONY: test
lint:
$(VENV)/bin/python -m flake8
$(VENV)/bin/python3 -m flake8
.PHONY: lint
release:
python3 setup.py sdist bdist_wheel upload
$(VENV)/bin/python3 setup.py sdist bdist_wheel upload
.PHONY: release
clean: