Skip to content

Commit

Permalink
Allow trial environments to fail on CI for now
Browse files Browse the repository at this point in the history
While I agree this is *far* from ideal, IMHO It is better to ignore them for now otherwise we hamper contributors with unrelated errors.

We should fix this before the next release.

#1989
  • Loading branch information
nicoddemus committed Dec 26, 2016
1 parent da40bcf commit f7a1d36
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ env:

matrix:
allow_failures:
# py35-trial failing on Linux: #1989
# see #1989
- env: TESTENV=py27-trial
- env: TESTENV=py35-trial

script: tox --recreate -e $TESTENV
Expand Down
6 changes: 6 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ environment:
- TOXENV: "freeze"
- TOXENV: "docs"

matrix:
allow_failures:
# see #1989
- TOXENV: "py27-trial"
- TOXENV: "py35-trial"

install:
- echo Installed Pythons
- dir c:\Python*
Expand Down

0 comments on commit f7a1d36

Please sign in to comment.