Skip to content
This repository has been archived by the owner on Jul 28, 2020. It is now read-only.

Commit

Permalink
setup codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
ruebot committed Apr 11, 2019
1 parent 3ec8a86 commit 594b2ec
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
au_notebook.egg-info
build
dist
.coverage
__pycache__
15 changes: 14 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -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
7 changes: 6 additions & 1 deletion test.py
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# Test file holder
import unittest

import au_notebook

if __name__ == '__main__':
unittest.main()

0 comments on commit 594b2ec

Please sign in to comment.