Permalink
Please
sign in to comment.
Showing
with
22 additions
and 2 deletions.
- +2 −0 .gitignore
- +14 −1 .travis.yml
- +6 −1 test.py
@@ -1,3 +1,5 @@ | |||
au_notebook.egg-info | |||
build | |||
dist | |||
.coverage | |||
__pycache__ |
@@ -1,2 +1,15 @@ | |||
sudo: false | |||
|
|||
language: python | |||
script: python setup.py test | |||
|
|||
python: 3.7 | |||
|
|||
install: | |||
- pip install codecov | |||
|
|||
script: | |||
- coverage run test.py | |||
- python setup.py test | |||
|
|||
after_success: | |||
- codecov |
@@ -1 +1,6 @@ | |||
# Test file holder | |||
import unittest | |||
|
|||
import au_notebook | |||
|
|||
if __name__ == '__main__': | |||
unittest.main() |
0 comments on commit
594b2ec