Skip to content

Commit

Permalink
CI setup
Browse files Browse the repository at this point in the history
  • Loading branch information
raamana committed Nov 24, 2019
1 parent 9af8939 commit ba0d8fb
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# Config file for automatic testing at travis-ci.org

language: python
python:
- 3.6
- 3.5
- 3.4
- 2.7
cache: pip
matrix:
include:
- python: "3.5"
- python: "3.6"

# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -U tox-travis
install:
- pip install -r requirements_dev.txt
- pip install -e .
- pip install pytest-cov

# Command to run tests, e.g. python setup.py test
script: tox
script:
- travis_wait 999 pytest --verbose --cov=. confounds/tests/test_confounds.py


0 comments on commit ba0d8fb

Please sign in to comment.