Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/src/commit/cb623c3c2689561047810958d5d760c89c00d00a/libs/tqdm/tests/tests_notebook.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/tqdm/tests/tests_notebook.py

10 lines
332 B

from tqdm.notebook import tqdm as tqdm_notebook
from tests_tqdm import with_setup, pretest, posttest
@with_setup(pretest, posttest)
def test_notebook_disabled_description():
"""Test that set_description works for disabled tqdm_notebook"""
with tqdm_notebook(1, disable=True) as t:
t.set_description("description")