Skip to content

Fix CI jobs #160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ matrix:
- python: 2.7
env: TOXENV=py27
- python: pypy
env: TOXENV=pypy
env: PYPY_VERSION=2.7-v7.0.0 TOXENV=pypy
- python: 3.5
env: TOXENV=py35
- python: 3.6
Expand All @@ -31,9 +31,9 @@ install:
# install 7.0.0. This can be removed once the Python 2 PyPy version in Travis
# includes a fix.
- |
if [ "$TOXENV" = "pypy" ]; then
export PYPY_VERSION="pypy-7.0.0-linux_x86_64-portable"
wget "https://bitbucket.org/squeaky/portable-pypy/downloads/${PYPY_VERSION}.tar.bz2"
if [[ ! -z "$PYPY_VERSION" ]]; then
export PYPY_VERSION="pypy$PYPY_VERSION-linux64"
wget "https://downloads.python.org/pypy/${PYPY_VERSION}.tar.bz2"
tar -jxf ${PYPY_VERSION}.tar.bz2
virtualenv --python="$PYPY_VERSION/bin/pypy" "$HOME/virtualenvs/$PYPY_VERSION"
source "$HOME/virtualenvs/$PYPY_VERSION/bin/activate"
Expand Down
1 change: 1 addition & 0 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ disable=bad-continuation,
no-else-continue,
no-else-return,
no-self-use,
raise-missing-from,
redefined-builtin,
redefined-outer-name,
too-many-arguments,
Expand Down