Skip to content
Snippets Groups Projects
Commit 8138e7ca authored by EXT José Ignacio Requeno Jarabo's avatar EXT José Ignacio Requeno Jarabo
Browse files

Change in coverage

parent 6c5c0d0f
No related branches found
No related tags found
No related merge requests found
Pipeline #27014 failed
# .coveragerc to control coverage.py
[run]
branch = True
concurrency = multiprocessing
parallel = True
cover_pylib = False
source = ParetoLib
[report]
# Show BoolLearnLib lines that are not executed during testing
show_missing = True
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
ignore_errors = True
[html]
directory = coverage_html_report
\ No newline at end of file
......@@ -4,6 +4,7 @@ coverage run -m --parallel-mode pytest test_Samples.py
coverage run -m --parallel-mode pytest test_Table.py
coverage run -m --parallel-mode pytest test_Terms.py
coverage combine
coverage report
#coverage report --omit=*BoolLearnLib/_py3k*
#coverage html -d coverage/report-python
coverage erase
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment