Skip to content

Commit

Permalink
Try2 on the build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdill committed Oct 24, 2018
1 parent af83e0c commit 51319f2
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,22 @@ language: python

matrix:
include:
PYTHON_VERSION:
- 2.7
- 3.5
- 3.6
- 3.7
- name: "Python 2.7 unit tests"
env: PYTHON=2.7
- name: "Python 3.5 unit tests"
env: PYTHON=3.5
- name: "Python 3.6 unit tests"
env: PYTHON=3.6
- name: "Python 3.7 unit tests"
env: PYTHON=3.7

before_install:
- git clone https://github.com/ericdill/ci ~/scripts

install:
- . ~/scripts/install-miniconda.sh
- conda create -n testenv-$PYTHON_VERSION python=$PYTHON_VERSION pip
- source activate testenv-$PYTHON_VERSION
- conda create -n testenv-$PYTHON python=$PYTHON pip
- source activate testenv-$PYTHON
- pip install -r test-requirements.txt
- pip install codecov
- pip install -e .
Expand Down

0 comments on commit 51319f2

Please sign in to comment.