mirror of https://github.com/OpenKMIP/PyKMIP.git
Remove basepython for non-default tox environments
This change removes the basepython setting for non-default tox environments, allowing those environments to use the default system Python instead of forcing the use of Python 2.7. This will now allow various TravisCI test runs to use the right version of Python.
This commit is contained in:
parent
64d78dc8e3
commit
5c117c9805
4
tox.ini
4
tox.ini
|
@ -18,14 +18,12 @@ commands = flake8 kmip/
|
|||
[testenv:integration]
|
||||
# Note: This requires local or remote access to a KMIP appliance or service
|
||||
deps = {[testenv]deps}
|
||||
basepython=python2.7
|
||||
commands =
|
||||
py.test --strict kmip/tests/integration -m "not ignore" {posargs}
|
||||
|
||||
[testenv:functional]
|
||||
# Note: This requires local access to instances of the PyKMIP server and SLUGS.
|
||||
deps = {[testenv]deps}
|
||||
basepython=python2.7
|
||||
commands =
|
||||
py.test --strict kmip/tests/functional -m "not ignore" {posargs}
|
||||
|
||||
|
@ -38,7 +36,6 @@ changedir = docs
|
|||
deps =
|
||||
sphinx
|
||||
sphinx_rtd_theme
|
||||
basepython = python2.7
|
||||
commands =
|
||||
sphinx-build -j4 -T -W -b html -d {envtmpdir}/doctrees source {envtmpdir}/html
|
||||
|
||||
|
@ -46,7 +43,6 @@ commands =
|
|||
changedir = docs
|
||||
extras =
|
||||
deps = {[testenv:docs]deps}
|
||||
basepython = python2.7
|
||||
commands =
|
||||
sphinx-build -W -b linkcheck source {envtmpdir}/html
|
||||
|
||||
|
|
Loading…
Reference in New Issue