Skip to content
Snippets Groups Projects
Commit fe10f305 authored by Amandine  PERRIN's avatar Amandine PERRIN
Browse files

Reduce progressbar to default terminal size (79)

parent d27771e5
No related branches found
No related tags found
No related merge requests found
Pipeline #39384 failed
......@@ -106,7 +106,7 @@ def run_annotation_all(genomes, threads, force, annot_folder, prodigal_only=Fals
progressbar.Percentage(), ') - ', progressbar.Timer(), ' - '
]
bar = progressbar.ProgressBar(widgets=widgets, max_value=nbgen,
term_width=100).start()
term_width=79).start()
# Get resource availability:
# - number of threads used by prokka/prodigal (cores_annot)
# - how many genomes can be annotated at the same time (pool_size)
......
......@@ -7,7 +7,8 @@ max-line-length = 100
[tool:pytest]
junit_family=legacy
addopts = --cov-report=html --cov-report=xml --cov PanACoTA --mpl --cov-append
addopts = --cov-report=html --cov-report=xml --cov PanACoTA --mpl
# --cov-append
# add option for junit tests report --junitxml=junit_tests.xml
# add option if coverage must be added to previous one --cov-append
# add option to get report in terminal --cov-report=term
......
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