Skip to content

Commit

Permalink
test on python 3 and install dependencies from conda via reqs files
Browse files Browse the repository at this point in the history
  • Loading branch information
gboeing committed Dec 15, 2017
1 parent 76328ce commit bb42c53
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ language: python

python:
- "2.7"
- "3.5"
- "3.6"

before_install:
- pip install --upgrade pip
Expand All @@ -13,9 +15,8 @@ before_install:
- conda config --set always_yes yes --set show_channel_urls true
- conda update conda
- conda config --add channels conda-forge --force
- conda create --quiet --name TESTENV python=$TRAVIS_PYTHON_VERSION future numpy pandas patsy scipy statsmodels coverage coveralls pytest
- conda create --quiet --name TESTENV python=$TRAVIS_PYTHON_VERSION --file requirements.txt --file requirements-dev.txt
- source activate TESTENV
- pip install pylogit
- conda info --all
- conda list

Expand Down

0 comments on commit bb42c53

Please sign in to comment.