Skip to content

Commit

Permalink
Merge pull request #2 from qutech/issues/1_travis_ci
Browse files Browse the repository at this point in the history
Add travis yml file
  • Loading branch information
terrorfisch authored Feb 25, 2019
2 parents 7f18cff + 9188b06 commit c11edad
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: python
python:
- 3.5
- 3.6

#these directories are persistent
cache: pip

before_install:
- pip install coverage coveralls
script:
- "coverage run --source=qtune --rcfile=coverage.ini setup.py test"
after_success:
- coveralls

notifications:
email: false
5 changes: 5 additions & 0 deletions coverage.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[run]
branch = True
omit =
*main.py
*__init__.py

0 comments on commit c11edad

Please sign in to comment.