Skip to content

Commit

Permalink
Add py36 to tox and a note to myself to remember to activate pyenv be…
Browse files Browse the repository at this point in the history
…fore using tox
  • Loading branch information
balta2ar committed Jun 9, 2018
1 parent c0ae84d commit ce6f940
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py33,py34,py35
envlist = py26,py27,py33,py34,py35,py36

[testenv]
downloadcache = .tox/_download/
Expand All @@ -21,3 +21,12 @@ commands = py.test -v --junitxml={envlogdir}/result.xml coursera/test
# {opts} is remove to prevent passing option "--download-cache" to pip
# which is already gone.
install_command = pip install {packages}

# Notes for developers. Depending on your system configuration,
# you may find this bash function useful to run before running tox:
#
# activate_pyenv () {
# export PYENV_ROOT="$HOME/.pyenv"
# export PATH="$PYENV_ROOT/bin:$PATH"
# eval "$(pyenv init -)"
# }

0 comments on commit ce6f940

Please sign in to comment.