Skip to content

Commit

Permalink
Added initial travis config
Browse files Browse the repository at this point in the history
waiting on broad to enable ci

Closes #23
  • Loading branch information
agraubert committed Feb 26, 2020
1 parent 5199a14 commit 2cd6346
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
service_name: travis-pro
repo_token: wp9nvBKUHGovzWMFCrL6dTaFu6ryq37EP
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
language: python
dist: bionic
# addons:
# apt:
# sources:
# - docker-bionic
# packages:
# - docker
services: docker
python:
- 3.7
- 3.8
install:
- pip install -e .
- pip install -r canine/tests/requirements.txt
- pip install coveralls

script:
- coverage run --source=canine --omit=*__init__.py -m unittest discover canine/test

after_success:
- coveralls

0 comments on commit 2cd6346

Please sign in to comment.