Skip to content

Commit

Permalink
Travis-CI: Install aiohttp when running Python 3.*
Browse files Browse the repository at this point in the history
  • Loading branch information
tcalmant committed Mar 7, 2019
1 parent b71edad commit 44963e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"

sudo: required

Expand All @@ -20,7 +21,7 @@ env:

before_install:
- pip install nose coverage coveralls
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then travis_retry pip install aiohttp; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then travis_retry pip install aiohttp; fi

script:
- nosetests -v --with-coverage --cover-package=jsonrpclib tests
Expand Down

0 comments on commit 44963e3

Please sign in to comment.