Port a bunch of tests from python-k8sclient repository. There is a script that starts a real instance of kubernetes and the tests are executed against it. Note, if you just have k8s accessible in your localhost:8080, the tests still run. so you don't really need to run "py27-functional" which runs the kube-init.sh Also, 2 API calls fail currently, i've added a TODO so we can dig into them and fix them
34 lines
667 B
INI
34 lines
667 B
INI
[tox]
|
|
envlist = py27, py34, py35
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[testenv]
|
|
passenv = TOXENV CI TRAVIS TRAVIS_*
|
|
usedevelop = True
|
|
install_command = pip install -U {opts} {packages}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
python -V
|
|
nosetests []
|
|
|
|
[testenv:py27-functional]
|
|
commands =
|
|
python -V
|
|
{toxinidir}/scripts/kube-init.sh nosetests []
|
|
|
|
[testenv:py35-functional]
|
|
commands =
|
|
python -V
|
|
{toxinidir}/scripts/kube-init.sh nosetests []
|
|
|
|
[testenv:coverage]
|
|
commands =
|
|
python -V
|
|
nosetests --with-coverage --cover-package=kubernetes.config,kubernetes.watch --cover-tests
|
|
|
|
[testenv:codecov]
|
|
commands =
|
|
codecov
|