diff options
-rw-r--r-- | .travis.yml | 9 | ||||
-rwxr-xr-x | setup.py | 1 | ||||
-rw-r--r-- | tox.ini | 12 |
3 files changed, 4 insertions, 18 deletions
diff --git a/.travis.yml b/.travis.yml index 3afcb263..2c5b5124 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,9 +8,6 @@ matrix: python: 2.7 env: TOXENV=py27 - os: linux - python: 3.3 - env: TOXENV=py33 - - os: linux python: 3.4 env: TOXENV=py34 - os: linux @@ -19,9 +16,9 @@ matrix: - os: linux python: 3.6 env: TOXENV=py36 -# - os: linux -# python: 3.7-dev -# env: TOXENV=py37 + - os: linux + python: 3.7-dev + env: TOXENV=py37 # # Warning: Don't try to use code coverage analysis with pypy as it is insanely slow # - os: linux # python: pypy @@ -52,7 +52,6 @@ Programming Language :: Python Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 -Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 @@ -1,5 +1,5 @@ [tox] -envlist = py27,py33,py34,py35,py36,py36-winpy37,pypy +envlist = py27,py34,py35,py36,py36-win,py37 [pytest] testpaths = tests @@ -40,16 +40,6 @@ commands = py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing codecov -[testenv:py33] -deps = - mock - pyparsing - pyperclip - pytest - pytest-xdist - six -commands = py.test -v -n2 - [testenv:py34] deps = mock |