diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-10-23 11:09:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 11:09:14 -0400 |
commit | 2cc1b90eba33fae1bf8d06a49bb9f64b662569ad (patch) | |
tree | 48898da0dd20449caf6050541bf5913710e48ed1 | |
parent | 6df4b982f4db2ddf04a9c4f15512584f2600b3d7 (diff) | |
parent | d5e06a16e0d5af94cd296780bf62f7a0d4340d0f (diff) | |
download | cmd2-git-2cc1b90eba33fae1bf8d06a49bb9f64b662569ad.tar.gz |
Merge pull request #588 from python-cmd2/tox_redundant
Fix redundant environments in tox.ini
-rw-r--r-- | .appveyor.yml | 2 | ||||
-rw-r--r-- | tox.ini | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 91f45824..ccda7e25 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,4 +4,4 @@ install: build: off test_script: - - python -m tox -e py35-win,py36-win,py37-win + - python -m tox -e py35,py36,py37 @@ -1,5 +1,5 @@ [tox] -envlist = docs,py34,py35,py36,py37,py35-win,py36-win,py37-win +envlist = docs,py34,py35,py36,py37 [pytest] testpaths = tests |