Skip to content

Commit

Permalink
Add Travis CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Jul 21, 2015
1 parent a5115ec commit 82acd20
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .travis.yml
@@ -0,0 +1,22 @@
language: python
python:
- 2.7
- 3.3
- 3.4
- pypy
- pypy3

install:
- python setup.py install
- pip install coverage coveralls

script:
- coverage run --source=src/pyotp ./test.py
# - coverage report --show-missing

after_success:
- coveralls

matrix:
allow_failures:
- python: pypy3

0 comments on commit 82acd20

Please sign in to comment.