mirror of
https://github.com/FlipsideCrypto/web3.py.git
synced 2026-02-06 02:46:45 +00:00
26 lines
486 B
YAML
26 lines
486 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "3.5"
|
|
dist: trusty
|
|
env:
|
|
matrix:
|
|
- TOX_ENV=py27-stdlib
|
|
- TOX_ENV=py34-stdlib
|
|
- TOX_ENV=py35-stdlib
|
|
- TOX_ENV=py27-gevent
|
|
- TOX_ENV=py34-gevent
|
|
- TOX_ENV=py35-gevent
|
|
- TOX_ENV=flake8
|
|
cache:
|
|
pip: true
|
|
install:
|
|
- "travis_retry pip install pip setuptools --upgrade"
|
|
- "travis_retry pip install tox"
|
|
before_script:
|
|
- pip freeze
|
|
script:
|
|
- tox -e $TOX_ENV --recreate
|
|
after_script:
|
|
- cat .tox/$TOX_ENV/log/*.log
|