Skip to content

Commit

Permalink
for pypy and pypy3
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Nov 7, 2016
1 parent 084e18d commit 23bc6f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -30,8 +30,8 @@ script:

- if [ "$TRAVIS_PYTHON_VERSION" == "3.3" ]; then python -m doctest -v README.rst; fi

- if [ "$TRAVIS_PYTHON_VERSION" != "pypy"* ]; then pycodestyle autopep8.py; fi
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy"* ]; then pip install pyflakes; pyflakes autopep8.py; fi
- if [[ "$TRAVIS_PYTHON_VERSION" != "pypy"* ]]; then pycodestyle autopep8.py; fi
- if [[ "$TRAVIS_PYTHON_VERSION" != "pypy"* ]]; then pip install pyflakes; pyflakes autopep8.py; fi

- pip install pydiff
- python test/acid.py -aaa --compare-bytecode --experimental test/example.py
Expand All @@ -44,4 +44,4 @@ script:

after_success:
# pypy is too slow.
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy"* ]; then ./coveralls.bash; fi
- if [[ "$TRAVIS_PYTHON_VERSION" != "pypy"* ]]; then ./coveralls.bash; fi

0 comments on commit 23bc6f1

Please sign in to comment.