File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 66 - pip install -U tox coveralls
77
88script :
9+ - pipenv install --dev
10+ - pipenv run pip freeze > requirements-tests.txt
911 - coverage erase
1012 - tox
1113after_success :
Original file line number Diff line number Diff line change 22envlist = py36
33
44[testenv]
5- deps = pipenv
65commands =
7- pipenv install --dev --ignore-pipfile
86 coverage erase
97 coverage run -m unittest
108 coverage report -m
119 coverage xml -i
1210 coverage html -i
1311 bash -c ' pylint --rcfile={toxinidir}/pylintrc --load-plugins=pylint.extensions.docparams, pylint.extensions.mccabe {envsitepackagesdir}/project > pylintReport.txt || true'
12+ install_command =
13+ pip install {opts} {packages}
1414recreate = True
1515whitelist_externals = /bin/bash
1616
1717[testenv:py36]
1818basepython = python3.6
19- setenv =
20- LC_ALL =en_GB.UTF-8
21- LANG =en_GB.UTF-8
19+ deps = -rrequirements-tests.txt
20+ [testenv:py35]
21+ basepython = python3.5
22+ deps = -rrequirements-tests.txt
23+ [testenv:py27]
24+ basepython = python2.7
25+ deps = -rrequirements-tests.txt
You can’t perform that action at this time.
0 commit comments