Skip to content

Commit

Permalink
update Travis config to run the explicit backend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsb42-aws committed Sep 10, 2018
1 parent 4cb1d2d commit 60d1399
Showing 1 changed file with 58 additions and 9 deletions.
67 changes: 58 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,70 @@
# detail: https://blog.travis-ci.com/2017-06-21-trusty-updates-2017-Q2-launch
dist: precise
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy-5.3.1"
install:
- pip install -U setuptools && pip install -U tox codecov tox-travis
script:
- tox
after_success:
- codecov
matrix:
include:
# CPython 2.7
- python: 2.7
env: TOXENV=py27-base
- python: 2.7
env: TOXENV=py27-cryptography
- python: 2.7
env: TOXENV=py27-pycryptodome
- python: 2.7
env: TOXENV=py27-pycryptodome
- python: 2.7
env: TOXENV=py27-compatibility
# CPython 3.4
- python: 3.4
env: TOXENV=py34-base
- python: 3.4
env: TOXENV=py34-cryptography
- python: 3.4
env: TOXENV=py34-pycryptodome
- python: 3.4
env: TOXENV=py34-pycryptodome
- python: 3.4
env: TOXENV=py34-compatibility
# CPython 3.5
- python: 3.5
env: TOXENV=py35-base
- python: 3.5
env: TOXENV=py35-cryptography
- python: 3.5
env: TOXENV=py35-pycryptodome
- python: 3.5
env: TOXENV=py35-pycryptodome
- python: 3.5
env: TOXENV=py35-compatibility
# CPython 3.5
- python: 3.5
env: TOXENV=py35-base
- python: 3.5
env: TOXENV=py35-cryptography
- python: 3.5
env: TOXENV=py35-pycryptodome
- python: 3.5
env: TOXENV=py35-pycryptodome
- python: 3.5
env: TOXENV=py35-compatibility
# PyPy 5.3.1
- python: pypy-5.3.1
env: TOXENV=pypy-base
- python: pypy-5.3.1
env: TOXENV=pypy-cryptography
- python: pypy-5.3.1
env: TOXENV=pypy-pycryptodome
- python: pypy-5.3.1
env: TOXENV=pypy-pycryptodome
- python: pypy-5.3.1
env: TOXENV=pypy-compatibility
# matrix:
# include:
# - python: 3.6
# env:
# - TOX_ENV=flake8
# script: tox -e $TOX_ENV
# env: TOX_ENV=flake8

0 comments on commit 60d1399

Please sign in to comment.