add code coverage
This commit is contained in:
@@ -7,9 +7,11 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run: sudo pip install --progress-bar off .
|
- run: sudo pip install --progress-bar off .
|
||||||
- run: sudo pip install pytest ftfy spacy
|
- run: sudo pip install pytest codecov pytest-cov
|
||||||
|
- run: sudo pip install spacy ftfy==4.4.3
|
||||||
- run: sudo python -m spacy download en
|
- run: sudo python -m spacy download en
|
||||||
- run: python -m pytest -sv tests/ --runslow
|
- run: python -m pytest -sv tests/ --runslow
|
||||||
|
- run: codecov
|
||||||
build_py2:
|
build_py2:
|
||||||
working_directory: ~/pytorch-pretrained-BERT
|
working_directory: ~/pytorch-pretrained-BERT
|
||||||
docker:
|
docker:
|
||||||
@@ -17,10 +19,11 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run: sudo pip install --progress-bar off .
|
- run: sudo pip install --progress-bar off .
|
||||||
- run: sudo pip install pytest spacy
|
- run: sudo pip install pytest codecov pytest-cov
|
||||||
- run: sudo pip install ftfy==4.4.3
|
- run: sudo pip install spacy ftfy==4.4.3
|
||||||
- run: sudo python -m spacy download en
|
- run: sudo python -m spacy download en
|
||||||
- run: python -m pytest -sv tests/ --runslow
|
- run: python -m pytest -sv tests/ --runslow
|
||||||
|
- run: codecov
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
build_and_test:
|
build_and_test:
|
||||||
|
|||||||
8
.coveragerc
Normal file
8
.coveragerc
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
[run]
|
||||||
|
source=pytorch_pretrained_bert
|
||||||
|
[report]
|
||||||
|
exclude_lines =
|
||||||
|
pragma: no cover
|
||||||
|
raise
|
||||||
|
except
|
||||||
|
register_parameter
|
||||||
Reference in New Issue
Block a user