Skip to content

Commit

Permalink
Merge daf688a into c20c41a
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcclintock committed Dec 23, 2020
2 parents c20c41a + daf688a commit 3baab05
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[run]
include =
./frispy/*
omit =
*tests*
*__init__*
[report]
show_missing = True
exclude_lines =
pragma: no cover
if __name__ == .__main__.:
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ python:
#Install dependencies
install:
- pip install -r requirements.txt
- pip install pytest-cov
- pip install coveralls
- python setup.py install
#Run the tests
script:
- pytest
- coverage run -m pytest
- coverage report -m
after_success:
- coveralls

0 comments on commit 3baab05

Please sign in to comment.