Skip to content

Commit

Permalink
Do not let global build fail if isort/flake8 fails (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
spaceone authored and prologic committed Jan 25, 2019
1 parent 7fea2d0 commit 00bede3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ matrix:
allow_failures: allow_failures:
# Till https://travis-ci.org/circuits/circuits/jobs/192669838 is solved. # Till https://travis-ci.org/circuits/circuits/jobs/192669838 is solved.
- os: osx - os: osx
- env: ALLOW_FAIL=true
include: include:
- python: 2.7 - python: 2.7
os: osx os: osx
Expand All @@ -33,10 +34,12 @@ matrix:
install: pip install -U flake8 install: pip install -U flake8
script: flake8 script: flake8
after_success: after_success:
env: ALLOW_FAIL=true
- python: 3.6 - python: 3.6
install: pip install -U isort install: pip install -U isort
script: isort -c --diff script: isort -c --diff
after_success: after_success:
env: ALLOW_FAIL=true


install: install:
- pip install -Ur requirements-test.txt - pip install -Ur requirements-test.txt
Expand Down

0 comments on commit 00bede3

Please sign in to comment.