Permalink
Cannot retrieve contributors at this time
32 lines (27 sloc)
728 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [tox] | |
| envlist = | |
| py3{6,7,8,9} | |
| py3{6,7,8,9}-functional | |
| [testenv] | |
| passenv = TOXENV CI TRAVIS TRAVIS_* | |
| usedevelop = True | |
| install_command = pip install -U {opts} {packages} | |
| deps = -r{toxinidir}/test-requirements.txt | |
| -r{toxinidir}/requirements.txt | |
| commands = | |
| python -V | |
| !functional: pytest -vvv -s --ignore=kubernetes/e2e_test | |
| functional: {toxinidir}/scripts/kube-init.sh pytest -vvv -s [] | |
| [testenv:docs] | |
| commands = | |
| python setup.py build_sphinx | |
| [testenv:update-pycodestyle] | |
| commands = | |
| {toxinidir}/scripts/update-pycodestyle.sh | |
| [testenv:coverage] | |
| commands = | |
| python -V | |
| pytest --cov=kubernetes/watch --cov=kubernetes/config kubernetes/watch kubernetes/config | |
| [testenv:codecov] | |
| commands = | |
| codecov |