Skip to content

Commit

Permalink
[travis] Remove ./scrape if Python <3.6 to avoid invalid syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-k authored and markpeek committed Oct 4, 2020
1 parent 30f293d commit fed7ee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ install:
- pip install --upgrade pycodestyle pyflakes

before_script:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then 2to3 -n -w --no-diffs awacs; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then 2to3 -n -w --no-diffs awacs; else rm -rf ./scrape; fi
- pycodestyle --version
- pycodestyle --show-source --show-pep8 .
- pyflakes .
Expand Down

0 comments on commit fed7ee3

Please sign in to comment.