File tree Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ install:
1212script : tox
1313after_success :
1414 - coveralls
15+ before_deploy :
16+ - pip install -r CI_REQUIREMENTS.txt
1517deploy :
1618 - provider : pypi
1719 distributions : sdist bdist_wheel
Original file line number Diff line number Diff line change 1+ funcsigs>=1.0
Original file line number Diff line number Diff line change @@ -18,20 +18,16 @@ deps =
1818 pytest
1919 pytest-cov
2020 pytest-sugar
21+ py27: funcsigs>=1.0
22+ pypy: funcsigs>=1.0
2123 py27: mock
2224 pypy: mock
23- {[base_deps]deps}
25+ py34: typing
2426
2527commands =
2628 py.test -vv --junitxml =unit_result.xml --cov-config .coveragerc --cov-report html --cov =logwrap {posargs:test}
2729 coverage report --fail-under 90
2830
29- [base_deps]
30- deps =
31- py27: funcsigs>=1.0
32- pypy: funcsigs>=1.0
33- py34: typing
34-
3531[testenv:venv]
3632commands = {posargs:}
3733
@@ -56,15 +52,17 @@ commands = pep257 logwrap
5652
5753[testenv:install]
5854deps =
59- {[base_deps]deps}
55+ py34: typing
56+ -r{toxinidir}/CI_REQUIREMENTS.txt
6057usedevelop = False
6158commands = pip install ./ -vvv -U
6259
6360[testenv:pylint]
6461basepython = python3.5
6562deps =
63+ py34: typing
6664 pylint
67- funcsigs>=1.0
65+ -r{toxinidir}/CI_REQUIREMENTS.txt
6866commands = pylint logwrap
6967
7068[flake8]
@@ -87,15 +85,16 @@ count = True
8785
8886[testenv:docs]
8987deps =
88+ py34: typing
9089 sphinx
91- {[base_deps]deps}
90+ -r{toxinidir}/CI_REQUIREMENTS.txt
9291commands = python setup.py build_sphinx
9392
9493[testenv:upload_docs]
9594deps =
9695 sphinx
9796 sphinx-pypi-upload
98- {[base_deps]deps}
97+ -r{toxinidir}/CI_REQUIREMENTS.txt
9998commands = python setup.py build_sphinx upload_sphinx
10099
101100[testenv:bandit]
You can’t perform that action at this time.
0 commit comments