File tree Expand file tree Collapse file tree 1 file changed +19
-8
lines changed
Expand file tree Collapse file tree 1 file changed +19
-8
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,25 @@ python:
88
99install :
1010 # XXX: Migrate this to Poetry fully
11- - pip install virtualenv
11+ - " pip install virtualenv"
12+ - " virtualenv ./venv"
13+ - " source ./venv/bin/activate"
14+ - " python -m pip install -U pip"
15+ - " pip install tox"
1216
17+ jobs :
18+ include :
19+ - stage : " lint"
20+ name : " Linting Tests"
21+ script : " tox -e black"
22+ - script : " tox -e flake8"
23+ - script : " tox -e bandit"
24+ - script : " tox -e pydocstyle"
25+
26+ stages :
27+ - " lint"
28+ - " test"
1329
1430script :
15- # Activate virtualenv, install tox and run all tests.
16- - virtualenv ./venv
17- - source ./venv/bin/activate
18- - python -m pip install -U pip
19- - pip install tox
20- - tox
21- - tox -e coveralls
31+ - " tox -e py46,py37,py38"
32+ - " tox -e coveralls"
You can’t perform that action at this time.
0 commit comments