Skip to content

Commit 5c117c9

Browse files
committed
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.
1 parent 64d78dc commit 5c117c9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tox.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@ commands = flake8 kmip/
1818
[testenv:integration]
1919
# Note: This requires local or remote access to a KMIP appliance or service
2020
deps = {[testenv]deps}
21-
basepython=python2.7
2221
commands =
2322
py.test --strict kmip/tests/integration -m "not ignore" {posargs}
2423

2524
[testenv:functional]
2625
# Note: This requires local access to instances of the PyKMIP server and SLUGS.
2726
deps = {[testenv]deps}
28-
basepython=python2.7
2927
commands =
3028
py.test --strict kmip/tests/functional -m "not ignore" {posargs}
3129

@@ -38,15 +36,13 @@ changedir = docs
3836
deps =
3937
sphinx
4038
sphinx_rtd_theme
41-
basepython = python2.7
4239
commands =
4340
sphinx-build -j4 -T -W -b html -d {envtmpdir}/doctrees source {envtmpdir}/html
4441

4542
[testenv:docs-linkcheck]
4643
changedir = docs
4744
extras =
4845
deps = {[testenv:docs]deps}
49-
basepython = python2.7
5046
commands =
5147
sphinx-build -W -b linkcheck source {envtmpdir}/html
5248

0 commit comments

Comments
 (0)