Skip to content

Commit

Permalink
require tests to pass on py36 on travis and appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed Jan 8, 2017
1 parent 8553bd2 commit 0844c66
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@ matrix:
env: TOXENV=docs env: TOXENV=docs
- python: 3.5 - python: 3.5
env: TOXENV=pep8 env: TOXENV=pep8
- python: 3.6-dev - python: 3.6
env: TOXENV=py36 env: TOXENV=py36
- python: nightly - python: nightly
env: TOXENV=py37 env: TOXENV=py37
allow_failures: allow_failures:
- env: TOXENV=py36
- env: TOXENV=py37 - env: TOXENV=py37


install: install:
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,7 @@
environment: environment:
matrix: matrix:
- PYTHON: "C:\\Python36"
TOXENV: "py36"
- PYTHON: "C:\\Python35" - PYTHON: "C:\\Python35"
TOXENV: "py35" TOXENV: "py35"
- PYTHON: "C:\\Python27" - PYTHON: "C:\\Python27"
Expand Down
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ commands =
python pyramid/scaffolds/tests.py python pyramid/scaffolds/tests.py
deps = virtualenv deps = virtualenv


[testenv:py36-scaffolds]
basepython = python3.6
commands =
python pyramid/scaffolds/tests.py
deps = virtualenv

[testenv:pypy-scaffolds] [testenv:pypy-scaffolds]
basepython = pypy basepython = pypy
commands = commands =
Expand Down

0 comments on commit 0844c66

Please sign in to comment.