Skip to content

Commit 1a1bb33

Browse files
Circle-CI has some confusions about virtualenvs when running with multiple Python versions. Stabbing at this with circle.yaml cribbed from: https://ben.fogbutter.com/2016/02/20/testing-multiple-python-versions-on-circleci.html
1 parent 5fbe706 commit 1a1bb33

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

circle.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dependencies:
2+
override:
3+
- pip install tox tox-pyenv
4+
- pyenv local 2.7.10 3.5.0

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# content of: tox.ini , put in same dir as setup.py
22
[tox]
3-
envlist = py27,py35,pep8
3+
envlist = py27,py35
4+
# formerly included ,pep8
45

56
[testenv]
67
commands=

0 commit comments

Comments
 (0)