Skip to content

Commit

Permalink
Add Travis config (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
a5kin committed Feb 25, 2018
1 parent a8cd13f commit dc64dfe
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Use containers instead of full VMs for faster startup.
sudo: false

language: python
python:
- "3.5"
- "3.6"
- "pypy"
- "pypy3"

install:
- pip install --quiet tox
- pip install --quiet numpy
- pip install --quiet pycuda
- pip install --quiet cached-property

script:
- if [[ $TRAVIS_PYTHON_VERSION == 2* || $TRAVIS_PYTHON_VERSION == 3* ]]; then tox -e $(echo $TRAVIS_PYTHON_VERSION | sed 's/\.//g;s/^/py/'); fi
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy'* ]]; then tox -e $TRAVIS_PYTHON_VERSION; fi

0 comments on commit dc64dfe

Please sign in to comment.