Skip to content
Snippets Groups Projects
Commit b83fc900 authored by mvdbeek's avatar mvdbeek
Browse files

Test against python 3.5

parent 0e0208f0
No related branches found
No related tags found
No related merge requests found
# TODO: test condor # TODO: test condor
language: python language: python
python: 2.7 matrix:
sudo: required include:
env: - python: 2.7
- TOX_ENV=py27-lint env: TOX_ENV=py27-lint
- TOX_ENV=py34-lint - python: 2.7
- TOX_ENV=py27-lint-readme env: TOX_ENV=py27-lint-readme
- TOX_ENV=lint-docs - python: 2.7
- TOX_ENV=py27 SETUP=true env: TOX_ENV=lint-docs
- TOX_ENV=py34 SETUP=true - python: 2.7
- TOX_ENV=py34-unit SETUP=true env: TOX_ENV=py27 SETUP=true
- TOX_ENV=py27-install-wheel - python: 2.7
env: TOX_ENV=py27-install-wheel
- python: 3.5
env: TOX_ENV=py35-lint
- python: 3.5
env: TOX_ENV=py35 SETUP=true
- python: 3.5
env: TOX_ENV=py35-unit SETUP=true
allow_failures:
- env: TOX_ENV=py35 SETUP=true
install: install:
- pip install tox - pip install tox
...@@ -18,9 +27,5 @@ install: ...@@ -18,9 +27,5 @@ install:
script: export PULSAR_TEST_KEY=test_data/testkey; export TEST_WEBAPP_POST_SHUTDOWN_SLEEP=1; . local_env.sh; tox -e $TOX_ENV script: export PULSAR_TEST_KEY=test_data/testkey; export TEST_WEBAPP_POST_SHUTDOWN_SLEEP=1; . local_env.sh; tox -e $TOX_ENV
matrix:
allow_failures:
- env: TOX_ENV=py34 SETUP=true
after_success: after_success:
- coveralls - coveralls
[tox] [tox]
envlist = py27-lint, py27-lint-readme, lint-docs, py34-lint, py27, py34, py27-unit, py34-unit envlist = py27-lint, py27-lint-readme, lint-docs, py35-lint, py27, py34, py27-unit, py34-unit
toxworkdir={env:TOX_WORK_DIR:.tox} toxworkdir={env:TOX_WORK_DIR:.tox}
[testenv] [testenv]
...@@ -13,13 +13,13 @@ passenv = DRMAA_LIBRARY_PATH ...@@ -13,13 +13,13 @@ passenv = DRMAA_LIBRARY_PATH
[testenv:py27-unit] [testenv:py27-unit]
commands = nosetests --exclude '.*integration.*' [] commands = nosetests --exclude '.*integration.*' []
[testenv:py34] [testenv:py35]
deps = deps =
-rrequirements3.txt -rrequirements3.txt
-rdev-requirements.txt -rdev-requirements.txt
drmaa drmaa
[testenv:py34-unit] [testenv:py35-unit]
commands = nosetests --verbose --exclude '.*integration.*' [] commands = nosetests --verbose --exclude '.*integration.*' []
deps = deps =
-rrequirements3.txt -rrequirements3.txt
...@@ -32,7 +32,7 @@ commands = flake8 pulsar test ...@@ -32,7 +32,7 @@ commands = flake8 pulsar test
skip_install = True skip_install = True
deps = flake8 deps = flake8
[testenv:py34-lint] [testenv:py35-lint]
commands = flake8 pulsar test commands = flake8 pulsar test
skip_install = True skip_install = True
deps = flake8 deps = flake8
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment