Skip to content

Commit f7a1d36

Browse files
committed
Allow trial environments to fail on CI for now
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
1 parent da40bcf commit f7a1d36

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ env:
3030

3131
matrix:
3232
allow_failures:
33-
# py35-trial failing on Linux: #1989
33+
# see #1989
34+
- env: TESTENV=py27-trial
3435
- env: TESTENV=py35-trial
3536

3637
script: tox --recreate -e $TESTENV

appveyor.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ environment:
2727
- TOXENV: "freeze"
2828
- TOXENV: "docs"
2929

30+
matrix:
31+
allow_failures:
32+
# see #1989
33+
- TOXENV: "py27-trial"
34+
- TOXENV: "py35-trial"
35+
3036
install:
3137
- echo Installed Pythons
3238
- dir c:\Python*

0 commit comments

Comments
 (0)