Skip to content

Commit 5616fa9

Browse files
sirexcclauss
authored andcommitted
Add pytest-cov (TheAlgorithms#1578)
* Add pytest-cov Also added coverage report in .travis.yml file. * updating DIRECTORY.md * Sort by missing statements * sort = Cover
1 parent 9a894eb commit 5616fa9

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

.coveragerc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[report]
2+
sort = Cover
3+
omit =
4+
.env/*

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ before_script:
99
script:
1010
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
1111
- mypy --ignore-missing-imports .
12-
- pytest . --doctest-modules
12+
- pytest --doctest-modules --cov-report=term-missing:skip-covered --cov=. .
1313
after_success:
1414
- scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md

DIRECTORY.md

+1
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,7 @@
521521
* [Naive String Search](https://github.com/TheAlgorithms/Python/blob/master/strings/naive_string_search.py)
522522
* [Rabin Karp](https://github.com/TheAlgorithms/Python/blob/master/strings/rabin_karp.py)
523523
* [Remove Duplicate](https://github.com/TheAlgorithms/Python/blob/master/strings/remove_duplicate.py)
524+
* [Word Occurence](https://github.com/TheAlgorithms/Python/blob/master/strings/word_occurence.py)
524525

525526
## Traversals
526527
* [Binary Tree Traversals](https://github.com/TheAlgorithms/Python/blob/master/traversals/binary_tree_traversals.py)

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ opencv-python
99
pandas
1010
pillow
1111
pytest
12+
pytest-cov
1213
requests
1314
scikit-fuzzy
1415
sklearn

0 commit comments

Comments
 (0)