Skip to content

Commit

Permalink
Add .travis.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
janhybs committed Nov 22, 2018
1 parent fbf5c0d commit 08c7ccb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: python
python:
- "3.6"
- "3.7-dev"

# command to install dependencies
install:
- pip install -r requirements.txt
- pip install coveralls pytest-cov

# command to run tests
script:
- py.test --cov=ci-hpc tests/

after_success:
- coveralls

0 comments on commit 08c7ccb

Please sign in to comment.