[Python][aiohttp] create venv as rule (#5913)

* create venv as rule

* create venv as rule II
This commit is contained in:
Nicolas Homble 2020-04-14 02:53:28 -04:00 committed by GitHub
parent 4c64870ab7
commit c479e518d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 4 deletions

View File

@ -11,8 +11,11 @@ clean:
find . -name "*.py[oc]" -delete
find . -name "__pycache__" -delete
test: clean
venv:
python -m venv $(VENV)
test: clean venv
bash ./test_python3.sh
test-all: clean
test-all: clean venv
bash ./test_python3.sh

View File

@ -11,8 +11,11 @@ clean:
find . -name "*.py[oc]" -delete
find . -name "__pycache__" -delete
test: clean
venv:
python -m venv $(VENV)
test: clean venv
bash ./test_python3.sh
test-all: clean
test-all: clean venv
bash ./test_python3.sh