Skip to content

Commit

Permalink
add initial travisCI script
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarriba committed Sep 5, 2018
1 parent ac7d7ee commit c213e3e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
language: python

matrix:
include:
- env: LINT_CHECK
python: "2.7"
install: pip install flake8
script: flake8
- python: "2.7"
- python: "3.5"

install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a

- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pytorch scipy -c pytorch
- source activate test-environment
- python setup.py install
- pip install --upgrade pytest
script:
- pytest test/

0 comments on commit c213e3e

Please sign in to comment.