diff --git "a/data/python/0d367ce.json" "b/data/python/0d367ce.json" deleted file mode 100644--- "a/data/python/0d367ce.json" +++ /dev/null @@ -1 +0,0 @@ -{"language": "Python", "id": 113, "repo_owner": "mikf", "repo_name": "gallery-dl", "head_branch": "master", "workflow_name": "tests", "workflow_filename": "tests.yml", "workflow_path": ".github/workflows/tests.yml", "contributor": "mikf", "sha_fail": "0d367ce1b98292d543d5fe48c60eab48bdb0056b", "sha_success": "6f8592eaff0c84304d1f904d6ff3a8d15d67c202", "workflow": "name: tests\n\non:\n push:\n branches:\n - master\n pull_request:\n branches:\n - master\n\njobs:\n build:\n\n runs-on: ubuntu-20.04\n strategy:\n fail-fast: false\n matrix:\n python-version: [\"3.5\", \"3.6\", \"3.7\", \"3.8\", \"3.9\", \"3.10\", \"3.11\", \"3.12\", \"pypy3.9\"]\n\n steps:\n - uses: actions/checkout@v4\n\n - name: Check file permissions\n run: |\n if [[ \"$(find ./gallery_dl -type f -not -perm 644)\" ]]; then exit 1; fi\n\n - name: Set up Python ${{ matrix.python-version }}\n uses: actions/setup-python@v4\n with:\n python-version: ${{ matrix.python-version }}\n\n - name: Install dependencies\n run: |\n pip install -r requirements.txt\n pip install flake8 youtube-dl\n\n - name: Install yt-dlp\n run: |\n case \"${{ matrix.python-version }}\" in\n 3.4|3.5)\n # don't install yt-dlp\n ;;\n 3.6|3.7)\n # install from PyPI\n pip install yt-dlp\n ;;\n *)\n # install from master\n pip install https://github.com/yt-dlp/yt-dlp/archive/refs/heads/master.tar.gz\n ;;\n esac\n\n - name: Lint with flake8\n run: |\n case \"${{ matrix.python-version }}\" in\n 3.4|3.5|3.6|3.7)\n flake8 --extend-exclude scripts/export_tests.py .\n ;;\n *)\n flake8 .\n ;;\n esac\n\n - name: Run tests\n run: |\n make test\n\n - name: Test autogeneration of man pages, bash/zsh/fish completion, etc\n run: |\n make\n", "logs": [{"step_name": "build (3.5)/8_Run tests.txt", "log": "##[group]Run make test\n\u001b[36;1mmake test\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n pythonLocation: /opt/hostedtoolcache/Python/3.5.10/x64\n PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.5.10/x64/lib/pkgconfig\n Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.5.10/x64\n Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.5.10/x64\n Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.5.10/x64\n LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.5.10/x64/lib\n##[endgroup]\nscripts/run_tests.py\ntest_accumulate (test_config.TestConfig) ... ok\ntest_apply (test_config.TestConfig) ... ok\ntest_get (test_config.TestConfig) ... ok\ntest_interpolate (test_config.TestConfig) ... ok\ntest_interpolate_common (test_config.TestConfig) ... ok\ntest_load (test_config.TestConfig) ... ok\ntest_set (test_config.TestConfig) ... ok\ntest_setdefault (test_config.TestConfig) ... ok\ntest_unset (test_config.TestConfig) ... ok\ntest_default_config (test_config.TestConfigFiles) ... ok\ntest_example_config (test_config.TestConfigFiles) ... ok\ntest_cookiestxt_load (test_util.TestCookiesTxt) ... ok\ntest_cookiestxt_store (test_util.TestCookiesTxt) ... ok\ntest_code_to_language (test_util.TestISO639_1) ... ok\ntest_language_to_code (test_util.TestISO639_1) ... ok\ntest_advance (test_util.TestOther) ... ok\ntest_bdecode (test_util.TestOther) ... ok\ntest_bencode (test_util.TestOther) ... ok\ntest_bencode_bdecode (test_util.TestOther) ... ok\ntest_build_duration_func (test_util.TestOther) ... ok\ntest_combine_dict (test_util.TestOther) ... ok\ntest_compile_expression (test_util.TestOther) ... ok\ntest_contains (test_util.TestOther) ... ok\ntest_custom_globals (test_util.TestOther) ... ok\ntest_datetime_to_timestamp (test_util.TestOther) ... ok\ntest_datetime_to_timestamp_string (test_util.TestOther) ... ok\ntest_enumerate_reversed (test_util.TestOther) ... ok\ntest_extractor_filter (test_util.TestOther) ... ok\ntest_filter_dict (test_util.TestOther) ... ok\ntest_format_value (test_util.TestOther) ... ok\ntest_generate_token (test_util.TestOther) ... ok\ntest_identity (test_util.TestOther) ... ok\ntest_import_file (test_util.TestOther) ... ok\ntest_md5 (test_util.TestOther) ... ok\ntest_noop (test_util.TestOther) ... ok\ntest_number_to_string (test_util.TestOther) ... ok\ntest_raises (test_util.TestOther) ... ok\ntest_sha1 (test_util.TestOther) ... ok\ntest_to_string (test_util.TestOther) ... ok\ntest_transform_dict (test_util.TestOther) ... ok\ntest_unique (test_util.TestOther) ... ok\ntest_unique_sequence (test_util.TestOther) ... ok\ntest_universal_none (test_util.TestOther) ... ok\ntest_build_predicate (test_util.TestPredicate) ... ok\ntest_filter_predicate (test_util.TestPredicate) ... ok\ntest_range_predicate (test_util.TestPredicate) ... ok\ntest_unique_predicate (test_util.TestPredicate) ... ok\ntest_parse_digit (test_util.TestRange) ... ok\ntest_parse_empty (test_util.TestRange) ... ok\ntest_parse_range (test_util.TestRange) ... ok\ntest_parse_slice (test_util.TestRange) ... ok\ntest_access_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_authenticated_call (test_oauth.TestOAuthSession) ... skipped ''\ntest_concat (test_oauth.TestOAuthSession) ... ok\ntest_dunder_call (test_oauth.TestOAuthSession) ... ok\ntest_generate_signature (test_oauth.TestOAuthSession) ... ok\ntest_nonce (test_oauth.TestOAuthSession) ... ok\ntest_quote (test_oauth.TestOAuthSession) ... ok\ntest_request_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_alternative (test_formatter.TestFormatter) ... ok\ntest_chain_special (test_formatter.TestFormatter) ... ok\ntest_conversions (test_formatter.TestFormatter) ... ok\ntest_datetime (test_formatter.TestFormatter) ... ok\ntest_dict_access (test_formatter.TestFormatter) ... ok\ntest_expression (test_formatter.TestFormatter) ... ok\ntest_fmt_func (test_formatter.TestFormatter) ... ok\ntest_fstring (test_formatter.TestFormatter) ... skipped 'no fstring support'\ntest_globals_env (test_formatter.TestFormatter) ... ok\ntest_globals_now (test_formatter.TestFormatter) ... ok\ntest_indexing (test_formatter.TestFormatter) ... ok\ntest_join (test_formatter.TestFormatter) ... ok\ntest_literals (test_formatter.TestFormatter) ... ok\ntest_maxlen (test_formatter.TestFormatter) ... ok\ntest_missing (test_formatter.TestFormatter) ... ok\ntest_missing_custom_default (test_formatter.TestFormatter) ... ok\ntest_module (test_formatter.TestFormatter) ... ok\ntest_offset (test_formatter.TestFormatter) ... ok\ntest_optional (test_formatter.TestFormatter) ... ok\ntest_replace (test_formatter.TestFormatter) ... ok\ntest_separator (test_formatter.TestFormatter) ... ok\ntest_slice_bytes (test_formatter.TestFormatter) ... ok\ntest_slice_str (test_formatter.TestFormatter) ... ok\ntest_sort (test_formatter.TestFormatter) ... ok\ntest_template (test_formatter.TestFormatter) ... ok\ntest_template_fstring (test_formatter.TestFormatter) ... skipped 'no fstring support'\ntest_ensure_http_scheme (test_text.TestText) ... ok\ntest_ext_from_url (test_text.TestText) ... ok\ntest_extr (test_text.TestText) ... ok\ntest_extract (test_text.TestText) ... ok\ntest_extract_all (test_text.TestText) ... ok\ntest_extract_from (test_text.TestText) ... ok\ntest_extract_iter (test_text.TestText) ... ok\ntest_filename_from_url (test_text.TestText) ... ok\ntest_nameext_from_url (test_text.TestText) ... ok\ntest_parse_bytes (test_text.TestText) ... ok\ntest_parse_datetime (test_text.TestText) ... ok\ntest_parse_float (test_text.TestText) ... ok\ntest_parse_int (test_text.TestText) ... ok\ntest_parse_query (test_text.TestText) ... ok\ntest_parse_timestamp (test_text.TestText) ... ok\ntest_parse_unicode_escapes (test_text.TestText) ... ok\ntest_remove_html (test_text.TestText) ... ok\ntest_rextract (test_text.TestText) ... ok\ntest_root_from_url (test_text.TestText) ... ok\ntest_slugify (test_text.TestText) ... ok\ntest_split_html (test_text.TestText) ... ok\ntest_cache (test_downloader.TestDownloaderModule) ... ok\ntest_cache_http (test_downloader.TestDownloaderModule) ... ok\ntest_cache_https (test_downloader.TestDownloaderModule) ... ok\ntest_find (test_downloader.TestDownloaderModule) ... ok\nERROR\nERROR\ntest_shorten (test_output.TestShorten) ... ok\ntest_shorten_noop (test_output.TestShorten) ... ok\ntest_shorten_separator (test_output.TestShorten) ... ok\ntest_shorten_eaw (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_mix (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_noop (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_mix_ (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_wide (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_wide (test_output.TestShortenEAW) ... ok\ntest_cookie_login (test_cookies.TestCookieLogin) ... ERROR\ntest_check_cookies (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_domain (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_expires (test_cookies.TestCookieUtils) ... ERROR\ntest_dict (test_cookies.TestCookiedict) ... ERROR\ntest_domain (test_cookies.TestCookiedict) ... ERROR\ntest_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_filename (test_cookies.TestCookiejar) ... ERROR\ntest_ascii (test_job.TestDataJob) ... ok\ntest_default (test_job.TestDataJob) ... ok\ntest_exception (test_job.TestDataJob) ... ok\ntest_num_string (test_job.TestDataJob) ... ok\ntest_private (test_job.TestDataJob) ... ok\ntest_sleep (test_job.TestDataJob) ... ok\ntest_extractor_filter (test_job.TestDownloadJob) ... ok\ntest_base_category (test_job.TestInfoJob) ... ok\ntest_custom (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestKeywordJob) ... ok\ntest_child (test_job.TestUrlJob) ... ok\ntest_default (test_job.TestUrlJob) ... ok\ntest_fallback (test_job.TestUrlJob) ... ok\ntest_parent (test_job.TestUrlJob) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments) ... ok\nskipped \"cannot import module 'yt_dlp'\"\ntest_database_read (test_cache.TestCache) ... ok\ntest_decorator (test_cache.TestCache) ... ok\ntest_expires_db (test_cache.TestCache) ... ok\ntest_expires_mem (test_cache.TestCache) ... ok\ntest_invalidate_db (test_cache.TestCache) ... ok\ntest_invalidate_mem (test_cache.TestCache) ... ok\ntest_invalidate_mem_simple (test_cache.TestCache) ... ok\ntest_keyarg_db (test_cache.TestCache) ... ok\ntest_keyarg_mem (test_cache.TestCache) ... ok\ntest_keyarg_mem_simple (test_cache.TestCache) ... ok\ntest_update_db (test_cache.TestCache) ... ok\ntest_update_mem (test_cache.TestCache) ... ok\ntest_update_mem_simple (test_cache.TestCache) ... ok\ntest_add (test_extractor.TestExtractorModule) ... ERROR\ntest_add_module (test_extractor.TestExtractorModule) ... ERROR\ntest_categories (test_extractor.TestExtractorModule) ... ok\ntest_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness ... ERROR\ntest_find (test_extractor.TestExtractorModule) ... ERROR\ntest_from_url (test_extractor.TestExtractorModule) ... ERROR\ntest_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize() ... ERROR\ntest_init_ytdl (test_extractor.TestExtractorModule) ... skipped 'test fails in CI'\ntest_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor ... ERROR\ntest_unique_pattern_matches (test_extractor.TestExtractorModule) ... ERROR\ntest_wait_seconds (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until_datetime (test_extractor.TestExtractorWait) ... ERROR\ntest_oauth1 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth) ... ERROR\n\n======================================================================\nERROR: setUpClass (test_downloader.TestHTTPDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 174, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: setUpClass (test_downloader.TestTextDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 234, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookie_login (test_cookies.TestCookieLogin)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 118, in test_cookie_login\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 127, in test_check_cookies\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_domain (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 149, in test_check_cookies_domain\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_expires (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 171, in test_check_cookies_expires\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_dict (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 87, in test_dict\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_domain (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 95, in test_domain\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 49, in test_cookiefile\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 59, in test_invalid_cookiefile\n self._test_warning(self.invalid_cookiefile, ValueError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_filename (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 62, in test_invalid_filename\n self._test_warning(join(self.path.name, \"nothing\"), FileNotFoundError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_add (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 71, in test_add\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nImportError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_add_module (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 78, in test_add_module\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nImportError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 175, in test_docstrings\n for extr1 in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 232, in extractors\n key=lambda x: x.__name__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nImportError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_find (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 59, in test_find\n result = extractor.find(uri)\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nImportError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_from_url (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 88, in test_from_url\n cls = extractor.find(uri).__class__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nImportError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize()\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 152, in test_init\n for cls in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 232, in extractors\n key=lambda x: x.__name__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nImportError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 191, in test_names\n for extr in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 232, in extractors\n key=lambda x: x.__name__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nImportError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_unique_pattern_matches (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 124, in test_unique_pattern_matches\n for extr2 in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nImportError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_wait_seconds (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 209, in test_wait_seconds\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1223, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1197, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 222, in test_wait_until\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1223, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1197, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until_datetime (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 238, in test_wait_until_datetime\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1223, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1197, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_oauth1 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 268, in test_oauth1\n with patch.object(extr, \"_oauth1_authorization_flow\") as m:\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1223, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1197, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth1_authorization_flow'\n\n======================================================================\nERROR: test_oauth2 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 277, in test_oauth2\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m:\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1223, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1197, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 285, in test_oauth2_mastodon\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1223, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1197, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 295, in test_oauth2_mastodon_unknown\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1223, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.5.10/x64/lib/python3.5/unittest/mock.py\", line 1197, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n----------------------------------------------------------------------\nRan 193 tests in 0.978s\n\nFAILED (errors=26, skipped=7)\nunable to import test_postprocessor\nmake: *** [Makefile:22: test] Error 1\n##[error]Process completed with exit code 2.\n"}, {"step_name": "build (3.6)/8_Run tests.txt", "log": "##[group]Run make test\n\u001b[36;1mmake test\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n pythonLocation: /opt/hostedtoolcache/Python/3.6.15/x64\n PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.6.15/x64/lib/pkgconfig\n Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.6.15/x64\n Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.6.15/x64\n Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.6.15/x64\n LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.6.15/x64/lib\n##[endgroup]\nscripts/run_tests.py\ntest_accumulate (test_config.TestConfig) ... ok\ntest_apply (test_config.TestConfig) ... ok\ntest_get (test_config.TestConfig) ... ok\ntest_interpolate (test_config.TestConfig) ... ok\ntest_interpolate_common (test_config.TestConfig) ... ok\ntest_load (test_config.TestConfig) ... ok\ntest_set (test_config.TestConfig) ... ok\ntest_setdefault (test_config.TestConfig) ... ok\ntest_unset (test_config.TestConfig) ... ok\ntest_default_config (test_config.TestConfigFiles) ... ok\ntest_example_config (test_config.TestConfigFiles) ... ok\ntest_cookiestxt_load (test_util.TestCookiesTxt) ... ok\ntest_cookiestxt_store (test_util.TestCookiesTxt) ... ok\ntest_code_to_language (test_util.TestISO639_1) ... ok\ntest_language_to_code (test_util.TestISO639_1) ... ok\ntest_advance (test_util.TestOther) ... ok\ntest_bdecode (test_util.TestOther) ... ok\ntest_bencode (test_util.TestOther) ... ok\ntest_bencode_bdecode (test_util.TestOther) ... ok\ntest_build_duration_func (test_util.TestOther) ... ok\ntest_combine_dict (test_util.TestOther) ... ok\ntest_compile_expression (test_util.TestOther) ... ok\ntest_contains (test_util.TestOther) ... ok\ntest_custom_globals (test_util.TestOther) ... ok\ntest_datetime_to_timestamp (test_util.TestOther) ... ok\ntest_datetime_to_timestamp_string (test_util.TestOther) ... ok\ntest_enumerate_reversed (test_util.TestOther) ... ok\ntest_extractor_filter (test_util.TestOther) ... ok\ntest_filter_dict (test_util.TestOther) ... ok\ntest_format_value (test_util.TestOther) ... ok\ntest_generate_token (test_util.TestOther) ... ok\ntest_identity (test_util.TestOther) ... ok\ntest_import_file (test_util.TestOther) ... ok\ntest_md5 (test_util.TestOther) ... ok\ntest_noop (test_util.TestOther) ... ok\ntest_number_to_string (test_util.TestOther) ... ok\ntest_raises (test_util.TestOther) ... ok\ntest_sha1 (test_util.TestOther) ... ok\ntest_to_string (test_util.TestOther) ... ok\ntest_transform_dict (test_util.TestOther) ... ok\ntest_unique (test_util.TestOther) ... ok\ntest_unique_sequence (test_util.TestOther) ... ok\ntest_universal_none (test_util.TestOther) ... ok\ntest_build_predicate (test_util.TestPredicate) ... ok\ntest_filter_predicate (test_util.TestPredicate) ... ok\ntest_range_predicate (test_util.TestPredicate) ... ok\ntest_unique_predicate (test_util.TestPredicate) ... ok\ntest_parse_digit (test_util.TestRange) ... ok\ntest_parse_empty (test_util.TestRange) ... ok\ntest_parse_range (test_util.TestRange) ... ok\ntest_parse_slice (test_util.TestRange) ... ok\ntest_access_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_authenticated_call (test_oauth.TestOAuthSession) ... skipped ''\ntest_concat (test_oauth.TestOAuthSession) ... ok\ntest_dunder_call (test_oauth.TestOAuthSession) ... ok\ntest_generate_signature (test_oauth.TestOAuthSession) ... ok\ntest_nonce (test_oauth.TestOAuthSession) ... ok\ntest_quote (test_oauth.TestOAuthSession) ... ok\ntest_request_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_alternative (test_formatter.TestFormatter) ... ok\ntest_chain_special (test_formatter.TestFormatter) ... ok\ntest_conversions (test_formatter.TestFormatter) ... ok\ntest_datetime (test_formatter.TestFormatter) ... ok\ntest_dict_access (test_formatter.TestFormatter) ... ok\ntest_expression (test_formatter.TestFormatter) ... ok\ntest_fmt_func (test_formatter.TestFormatter) ... ok\ntest_fstring (test_formatter.TestFormatter) ... ok\ntest_globals_env (test_formatter.TestFormatter) ... ok\ntest_globals_now (test_formatter.TestFormatter) ... ok\ntest_indexing (test_formatter.TestFormatter) ... ok\ntest_join (test_formatter.TestFormatter) ... ok\ntest_literals (test_formatter.TestFormatter) ... ok\ntest_maxlen (test_formatter.TestFormatter) ... ok\ntest_missing (test_formatter.TestFormatter) ... ok\ntest_missing_custom_default (test_formatter.TestFormatter) ... ok\ntest_module (test_formatter.TestFormatter) ... ok\ntest_offset (test_formatter.TestFormatter) ... ok\ntest_optional (test_formatter.TestFormatter) ... ok\ntest_replace (test_formatter.TestFormatter) ... ok\ntest_separator (test_formatter.TestFormatter) ... ok\ntest_slice_bytes (test_formatter.TestFormatter) ... ok\ntest_slice_str (test_formatter.TestFormatter) ... ok\ntest_sort (test_formatter.TestFormatter) ... ok\ntest_template (test_formatter.TestFormatter) ... ok\ntest_template_fstring (test_formatter.TestFormatter) ... ok\ntest_ensure_http_scheme (test_text.TestText) ... ok\ntest_ext_from_url (test_text.TestText) ... ok\ntest_extr (test_text.TestText) ... ok\ntest_extract (test_text.TestText) ... ok\ntest_extract_all (test_text.TestText) ... ok\ntest_extract_from (test_text.TestText) ... ok\ntest_extract_iter (test_text.TestText) ... ok\ntest_filename_from_url (test_text.TestText) ... ok\ntest_nameext_from_url (test_text.TestText) ... ok\ntest_parse_bytes (test_text.TestText) ... ok\ntest_parse_datetime (test_text.TestText) ... ok\ntest_parse_float (test_text.TestText) ... ok\ntest_parse_int (test_text.TestText) ... ok\ntest_parse_query (test_text.TestText) ... ok\ntest_parse_timestamp (test_text.TestText) ... ok\ntest_parse_unicode_escapes (test_text.TestText) ... ok\ntest_remove_html (test_text.TestText) ... ok\ntest_rextract (test_text.TestText) ... ok\ntest_root_from_url (test_text.TestText) ... ok\ntest_slugify (test_text.TestText) ... ok\ntest_split_html (test_text.TestText) ... ok\ntest_cache (test_downloader.TestDownloaderModule) ... ok\ntest_cache_http (test_downloader.TestDownloaderModule) ... ok\ntest_cache_https (test_downloader.TestDownloaderModule) ... ok\ntest_find (test_downloader.TestDownloaderModule) ... ok\nERROR\nERROR\ntest_shorten (test_output.TestShorten) ... ok\ntest_shorten_noop (test_output.TestShorten) ... ok\ntest_shorten_separator (test_output.TestShorten) ... ok\ntest_shorten_eaw (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_mix (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_noop (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_mix_ (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_wide (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_wide (test_output.TestShortenEAW) ... ok\ntest_cookie_login (test_cookies.TestCookieLogin) ... ERROR\ntest_check_cookies (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_domain (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_expires (test_cookies.TestCookieUtils) ... ERROR\ntest_dict (test_cookies.TestCookiedict) ... ERROR\ntest_domain (test_cookies.TestCookiedict) ... ERROR\ntest_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_filename (test_cookies.TestCookiejar) ... ERROR\ntest_ascii (test_job.TestDataJob) ... ok\ntest_default (test_job.TestDataJob) ... ok\ntest_exception (test_job.TestDataJob) ... ok\ntest_num_string (test_job.TestDataJob) ... ok\ntest_private (test_job.TestDataJob) ... ok\ntest_sleep (test_job.TestDataJob) ... ok\ntest_extractor_filter (test_job.TestDownloadJob) ... ok\ntest_base_category (test_job.TestInfoJob) ... ok\ntest_custom (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestKeywordJob) ... ok\ntest_child (test_job.TestUrlJob) ... ok\ntest_default (test_job.TestUrlJob) ... ok\ntest_fallback (test_job.TestUrlJob) ... ok\ntest_parent (test_job.TestUrlJob) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_remuxs_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries_extractor (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_database_read (test_cache.TestCache) ... ok\ntest_decorator (test_cache.TestCache) ... ok\ntest_expires_db (test_cache.TestCache) ... ok\ntest_expires_mem (test_cache.TestCache) ... ok\ntest_invalidate_db (test_cache.TestCache) ... ok\ntest_invalidate_mem (test_cache.TestCache) ... ok\ntest_invalidate_mem_simple (test_cache.TestCache) ... ok\ntest_keyarg_db (test_cache.TestCache) ... ok\ntest_keyarg_mem (test_cache.TestCache) ... ok\ntest_keyarg_mem_simple (test_cache.TestCache) ... ok\ntest_update_db (test_cache.TestCache) ... ok\ntest_update_mem (test_cache.TestCache) ... ok\ntest_update_mem_simple (test_cache.TestCache) ... ok\ntest_add (test_extractor.TestExtractorModule) ... ERROR\ntest_add_module (test_extractor.TestExtractorModule) ... ERROR\ntest_categories (test_extractor.TestExtractorModule) ... ok\ntest_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness ... ERROR\ntest_find (test_extractor.TestExtractorModule) ... ERROR\ntest_from_url (test_extractor.TestExtractorModule) ... ERROR\ntest_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize() ... ERROR\ntest_init_ytdl (test_extractor.TestExtractorModule) ... ERROR\ntest_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor ... ERROR\ntest_unique_pattern_matches (test_extractor.TestExtractorModule) ... ERROR\ntest_wait_seconds (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until_datetime (test_extractor.TestExtractorWait) ... ERROR\ntest_oauth1 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth) ... ERROR\n\n======================================================================\nERROR: setUpClass (test_downloader.TestHTTPDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 174, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: setUpClass (test_downloader.TestTextDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 234, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookie_login (test_cookies.TestCookieLogin)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 118, in test_cookie_login\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 127, in test_check_cookies\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_domain (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 149, in test_check_cookies_domain\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_expires (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 171, in test_check_cookies_expires\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_dict (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 87, in test_dict\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_domain (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 95, in test_domain\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 49, in test_cookiefile\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 59, in test_invalid_cookiefile\n self._test_warning(self.invalid_cookiefile, ValueError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_filename (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 62, in test_invalid_filename\n self._test_warning(join(self.path.name, \"nothing\"), FileNotFoundError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_add (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 71, in test_add\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_add_module (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 78, in test_add_module\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 175, in test_docstrings\n for extr1 in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 232, in extractors\n key=lambda x: x.__name__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_find (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 59, in test_find\n result = extractor.find(uri)\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_from_url (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 88, in test_from_url\n cls = extractor.find(uri).__class__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize()\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 152, in test_init\n for cls in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 232, in extractors\n key=lambda x: x.__name__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init_ytdl (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 164, in test_init_ytdl\n extr = extractor.find(\"ytdl:\")\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 191, in test_names\n for extr in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 232, in extractors\n key=lambda x: x.__name__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_unique_pattern_matches (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 124, in test_unique_pattern_matches\n for extr2 in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_wait_seconds (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 209, in test_wait_seconds\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1247, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1221, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 222, in test_wait_until\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1247, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1221, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until_datetime (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 238, in test_wait_until_datetime\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1247, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1221, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_oauth1 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 268, in test_oauth1\n with patch.object(extr, \"_oauth1_authorization_flow\") as m:\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1247, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1221, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth1_authorization_flow'\n\n======================================================================\nERROR: test_oauth2 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 277, in test_oauth2\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m:\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1247, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1221, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 285, in test_oauth2_mastodon\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1247, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1221, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 295, in test_oauth2_mastodon_unknown\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1247, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.6.15/x64/lib/python3.6/unittest/mock.py\", line 1221, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n----------------------------------------------------------------------\nRan 214 tests in 1.434s\n\nFAILED (errors=27, skipped=3)\nunable to import test_postprocessor\nmake: *** [Makefile:22: test] Error 1\n##[error]Process completed with exit code 2.\n"}, {"step_name": "build (3.7)/8_Run tests.txt", "log": "##[group]Run make test\n\u001b[36;1mmake test\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n pythonLocation: /opt/hostedtoolcache/Python/3.7.17/x64\n PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.7.17/x64/lib/pkgconfig\n Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.7.17/x64\n Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.7.17/x64\n Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.7.17/x64\n LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.7.17/x64/lib\n##[endgroup]\nscripts/run_tests.py\ntest_accumulate (test_config.TestConfig) ... ok\ntest_apply (test_config.TestConfig) ... ok\ntest_get (test_config.TestConfig) ... ok\ntest_interpolate (test_config.TestConfig) ... ok\ntest_interpolate_common (test_config.TestConfig) ... ok\ntest_load (test_config.TestConfig) ... ok\ntest_set (test_config.TestConfig) ... ok\ntest_setdefault (test_config.TestConfig) ... ok\ntest_unset (test_config.TestConfig) ... ok\ntest_default_config (test_config.TestConfigFiles) ... ok\ntest_example_config (test_config.TestConfigFiles) ... ok\ntest_cookiestxt_load (test_util.TestCookiesTxt) ... ok\ntest_cookiestxt_store (test_util.TestCookiesTxt) ... ok\ntest_code_to_language (test_util.TestISO639_1) ... ok\ntest_language_to_code (test_util.TestISO639_1) ... ok\ntest_advance (test_util.TestOther) ... ok\ntest_bdecode (test_util.TestOther) ... ok\ntest_bencode (test_util.TestOther) ... ok\ntest_bencode_bdecode (test_util.TestOther) ... ok\ntest_build_duration_func (test_util.TestOther) ... ok\ntest_combine_dict (test_util.TestOther) ... ok\ntest_compile_expression (test_util.TestOther) ... ok\ntest_contains (test_util.TestOther) ... ok\ntest_custom_globals (test_util.TestOther) ... ok\ntest_datetime_to_timestamp (test_util.TestOther) ... ok\ntest_datetime_to_timestamp_string (test_util.TestOther) ... ok\ntest_enumerate_reversed (test_util.TestOther) ... ok\ntest_extractor_filter (test_util.TestOther) ... ok\ntest_filter_dict (test_util.TestOther) ... ok\ntest_format_value (test_util.TestOther) ... ok\ntest_generate_token (test_util.TestOther) ... ok\ntest_identity (test_util.TestOther) ... ok\ntest_import_file (test_util.TestOther) ... ok\ntest_md5 (test_util.TestOther) ... ok\ntest_noop (test_util.TestOther) ... ok\ntest_number_to_string (test_util.TestOther) ... ok\ntest_raises (test_util.TestOther) ... ok\ntest_sha1 (test_util.TestOther) ... ok\ntest_to_string (test_util.TestOther) ... ok\ntest_transform_dict (test_util.TestOther) ... ok\ntest_unique (test_util.TestOther) ... ok\ntest_unique_sequence (test_util.TestOther) ... ok\ntest_universal_none (test_util.TestOther) ... ok\ntest_build_predicate (test_util.TestPredicate) ... ok\ntest_filter_predicate (test_util.TestPredicate) ... ok\ntest_range_predicate (test_util.TestPredicate) ... ok\ntest_unique_predicate (test_util.TestPredicate) ... ok\ntest_parse_digit (test_util.TestRange) ... ok\ntest_parse_empty (test_util.TestRange) ... ok\ntest_parse_range (test_util.TestRange) ... ok\ntest_parse_slice (test_util.TestRange) ... ok\ntest_access_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_authenticated_call (test_oauth.TestOAuthSession) ... skipped ''\ntest_concat (test_oauth.TestOAuthSession) ... ok\ntest_dunder_call (test_oauth.TestOAuthSession) ... ok\ntest_generate_signature (test_oauth.TestOAuthSession) ... ok\ntest_nonce (test_oauth.TestOAuthSession) ... ok\ntest_quote (test_oauth.TestOAuthSession) ... ok\ntest_request_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_alternative (test_formatter.TestFormatter) ... ok\ntest_chain_special (test_formatter.TestFormatter) ... ok\ntest_conversions (test_formatter.TestFormatter) ... ok\ntest_datetime (test_formatter.TestFormatter) ... ok\ntest_dict_access (test_formatter.TestFormatter) ... ok\ntest_expression (test_formatter.TestFormatter) ... ok\ntest_fmt_func (test_formatter.TestFormatter) ... ok\ntest_fstring (test_formatter.TestFormatter) ... ok\ntest_globals_env (test_formatter.TestFormatter) ... ok\ntest_globals_now (test_formatter.TestFormatter) ... ok\ntest_indexing (test_formatter.TestFormatter) ... ok\ntest_join (test_formatter.TestFormatter) ... ok\ntest_literals (test_formatter.TestFormatter) ... ok\ntest_maxlen (test_formatter.TestFormatter) ... ok\ntest_missing (test_formatter.TestFormatter) ... ok\ntest_missing_custom_default (test_formatter.TestFormatter) ... ok\ntest_module (test_formatter.TestFormatter) ... ok\ntest_offset (test_formatter.TestFormatter) ... ok\ntest_optional (test_formatter.TestFormatter) ... ok\ntest_replace (test_formatter.TestFormatter) ... ok\ntest_separator (test_formatter.TestFormatter) ... ok\ntest_slice_bytes (test_formatter.TestFormatter) ... ok\ntest_slice_str (test_formatter.TestFormatter) ... ok\ntest_sort (test_formatter.TestFormatter) ... ok\ntest_template (test_formatter.TestFormatter) ... ok\ntest_template_fstring (test_formatter.TestFormatter) ... ok\ntest_ensure_http_scheme (test_text.TestText) ... ok\ntest_ext_from_url (test_text.TestText) ... ok\ntest_extr (test_text.TestText) ... ok\ntest_extract (test_text.TestText) ... ok\ntest_extract_all (test_text.TestText) ... ok\ntest_extract_from (test_text.TestText) ... ok\ntest_extract_iter (test_text.TestText) ... ok\ntest_filename_from_url (test_text.TestText) ... ok\ntest_nameext_from_url (test_text.TestText) ... ok\ntest_parse_bytes (test_text.TestText) ... ok\ntest_parse_datetime (test_text.TestText) ... ok\ntest_parse_float (test_text.TestText) ... ok\ntest_parse_int (test_text.TestText) ... ok\ntest_parse_query (test_text.TestText) ... ok\ntest_parse_timestamp (test_text.TestText) ... ok\ntest_parse_unicode_escapes (test_text.TestText) ... ok\ntest_remove_html (test_text.TestText) ... ok\ntest_rextract (test_text.TestText) ... ok\ntest_root_from_url (test_text.TestText) ... ok\ntest_slugify (test_text.TestText) ... ok\ntest_split_html (test_text.TestText) ... ok\ntest_cache (test_downloader.TestDownloaderModule) ... ok\ntest_cache_http (test_downloader.TestDownloaderModule) ... ok\ntest_cache_https (test_downloader.TestDownloaderModule) ... ok\ntest_find (test_downloader.TestDownloaderModule) ... ok\nERROR\nERROR\ntest_shorten (test_output.TestShorten) ... ok\ntest_shorten_noop (test_output.TestShorten) ... ok\ntest_shorten_separator (test_output.TestShorten) ... ok\ntest_shorten_eaw (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_mix (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_noop (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_mix_ (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_wide (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_wide (test_output.TestShortenEAW) ... ok\ntest_cookie_login (test_cookies.TestCookieLogin) ... ERROR\ntest_check_cookies (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_domain (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_expires (test_cookies.TestCookieUtils) ... ERROR\ntest_dict (test_cookies.TestCookiedict) ... ERROR\ntest_domain (test_cookies.TestCookiedict) ... ERROR\ntest_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_filename (test_cookies.TestCookiejar) ... ERROR\ntest_ascii (test_job.TestDataJob) ... ok\ntest_default (test_job.TestDataJob) ... ok\ntest_exception (test_job.TestDataJob) ... ok\ntest_num_string (test_job.TestDataJob) ... ok\ntest_private (test_job.TestDataJob) ... ok\ntest_sleep (test_job.TestDataJob) ... ok\ntest_extractor_filter (test_job.TestDownloadJob) ... ok\ntest_base_category (test_job.TestInfoJob) ... ok\ntest_custom (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestKeywordJob) ... ok\ntest_child (test_job.TestUrlJob) ... ok\ntest_default (test_job.TestUrlJob) ... ok\ntest_fallback (test_job.TestUrlJob) ... ok\ntest_parent (test_job.TestUrlJob) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_remuxs_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries_extractor (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_database_read (test_cache.TestCache) ... ok\ntest_decorator (test_cache.TestCache) ... ok\ntest_expires_db (test_cache.TestCache) ... ok\ntest_expires_mem (test_cache.TestCache) ... ok\ntest_invalidate_db (test_cache.TestCache) ... ok\ntest_invalidate_mem (test_cache.TestCache) ... ok\ntest_invalidate_mem_simple (test_cache.TestCache) ... ok\ntest_keyarg_db (test_cache.TestCache) ... ok\ntest_keyarg_mem (test_cache.TestCache) ... ok\ntest_keyarg_mem_simple (test_cache.TestCache) ... ok\ntest_update_db (test_cache.TestCache) ... ok\ntest_update_mem (test_cache.TestCache) ... ok\ntest_update_mem_simple (test_cache.TestCache) ... ok\ntest_add (test_extractor.TestExtractorModule) ... ERROR\ntest_add_module (test_extractor.TestExtractorModule) ... ERROR\ntest_categories (test_extractor.TestExtractorModule) ... ok\ntest_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness ... ERROR\ntest_find (test_extractor.TestExtractorModule) ... ERROR\ntest_from_url (test_extractor.TestExtractorModule) ... ERROR\ntest_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize() ... ERROR\ntest_init_ytdl (test_extractor.TestExtractorModule) ... ERROR\ntest_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor ... ERROR\ntest_unique_pattern_matches (test_extractor.TestExtractorModule) ... ERROR\ntest_wait_seconds (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until_datetime (test_extractor.TestExtractorWait) ... ERROR\ntest_oauth1 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth) ... ERROR\n\n======================================================================\nERROR: setUpClass (test_downloader.TestHTTPDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 174, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: setUpClass (test_downloader.TestTextDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 234, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookie_login (test_cookies.TestCookieLogin)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 118, in test_cookie_login\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 127, in test_check_cookies\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_domain (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 149, in test_check_cookies_domain\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_expires (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 171, in test_check_cookies_expires\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_dict (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 87, in test_dict\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_domain (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 95, in test_domain\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 49, in test_cookiefile\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 59, in test_invalid_cookiefile\n self._test_warning(self.invalid_cookiefile, ValueError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_filename (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 62, in test_invalid_filename\n self._test_warning(join(self.path.name, \"nothing\"), FileNotFoundError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_add (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 71, in test_add\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_add_module (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 78, in test_add_module\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 175, in test_docstrings\n for extr1 in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 232, in extractors\n key=lambda x: x.__name__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_find (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 59, in test_find\n result = extractor.find(uri)\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_from_url (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 88, in test_from_url\n cls = extractor.find(uri).__class__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize()\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 152, in test_init\n for cls in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 232, in extractors\n key=lambda x: x.__name__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init_ytdl (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 164, in test_init_ytdl\n extr = extractor.find(\"ytdl:\")\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 191, in test_names\n for extr in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 232, in extractors\n key=lambda x: x.__name__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_unique_pattern_matches (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 124, in test_unique_pattern_matches\n for extr2 in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_wait_seconds (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 209, in test_wait_seconds\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1307, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1281, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 222, in test_wait_until\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1307, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1281, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until_datetime (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 238, in test_wait_until_datetime\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1307, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1281, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_oauth1 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 268, in test_oauth1\n with patch.object(extr, \"_oauth1_authorization_flow\") as m:\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1307, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1281, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth1_authorization_flow'\n\n======================================================================\nERROR: test_oauth2 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 277, in test_oauth2\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m:\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1307, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1281, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 285, in test_oauth2_mastodon\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1307, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1281, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 295, in test_oauth2_mastodon_unknown\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1307, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.7.17/x64/lib/python3.7/unittest/mock.py\", line 1281, in get_original\n \"%s does not have the attribute %r\" % (target, name)\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n----------------------------------------------------------------------\nRan 214 tests in 1.028s\n\nFAILED (errors=27, skipped=3)\nunable to import test_postprocessor\nmake: *** [Makefile:22: test] Error 1\n##[error]Process completed with exit code 2.\n"}, {"step_name": "build (3.8)/8_Run tests.txt", "log": "##[group]Run make test\n\u001b[36;1mmake test\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n pythonLocation: /opt/hostedtoolcache/Python/3.8.18/x64\n PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.8.18/x64/lib/pkgconfig\n Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.8.18/x64\n Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.8.18/x64\n Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.8.18/x64\n LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.8.18/x64/lib\n##[endgroup]\nscripts/run_tests.py\ntest_accumulate (test_config.TestConfig) ... ok\ntest_apply (test_config.TestConfig) ... ok\ntest_get (test_config.TestConfig) ... ok\ntest_interpolate (test_config.TestConfig) ... ok\ntest_interpolate_common (test_config.TestConfig) ... ok\ntest_load (test_config.TestConfig) ... ok\ntest_set (test_config.TestConfig) ... ok\ntest_setdefault (test_config.TestConfig) ... ok\ntest_unset (test_config.TestConfig) ... ok\ntest_default_config (test_config.TestConfigFiles) ... ok\ntest_example_config (test_config.TestConfigFiles) ... ok\ntest_cookiestxt_load (test_util.TestCookiesTxt) ... ok\ntest_cookiestxt_store (test_util.TestCookiesTxt) ... ok\ntest_code_to_language (test_util.TestISO639_1) ... ok\ntest_language_to_code (test_util.TestISO639_1) ... ok\ntest_advance (test_util.TestOther) ... ok\ntest_bdecode (test_util.TestOther) ... ok\ntest_bencode (test_util.TestOther) ... ok\ntest_bencode_bdecode (test_util.TestOther) ... ok\ntest_build_duration_func (test_util.TestOther) ... ok\ntest_combine_dict (test_util.TestOther) ... ok\ntest_compile_expression (test_util.TestOther) ... ok\ntest_contains (test_util.TestOther) ... ok\ntest_custom_globals (test_util.TestOther) ... ok\ntest_datetime_to_timestamp (test_util.TestOther) ... ok\ntest_datetime_to_timestamp_string (test_util.TestOther) ... ok\ntest_enumerate_reversed (test_util.TestOther) ... ok\ntest_extractor_filter (test_util.TestOther) ... ok\ntest_filter_dict (test_util.TestOther) ... ok\ntest_format_value (test_util.TestOther) ... ok\ntest_generate_token (test_util.TestOther) ... ok\ntest_identity (test_util.TestOther) ... ok\ntest_import_file (test_util.TestOther) ... ok\ntest_md5 (test_util.TestOther) ... ok\ntest_noop (test_util.TestOther) ... ok\ntest_number_to_string (test_util.TestOther) ... ok\ntest_raises (test_util.TestOther) ... ok\ntest_sha1 (test_util.TestOther) ... ok\ntest_to_string (test_util.TestOther) ... ok\ntest_transform_dict (test_util.TestOther) ... ok\ntest_unique (test_util.TestOther) ... ok\ntest_unique_sequence (test_util.TestOther) ... ok\ntest_universal_none (test_util.TestOther) ... ok\ntest_build_predicate (test_util.TestPredicate) ... ok\ntest_filter_predicate (test_util.TestPredicate) ... ok\ntest_range_predicate (test_util.TestPredicate) ... ok\ntest_unique_predicate (test_util.TestPredicate) ... ok\ntest_parse_digit (test_util.TestRange) ... ok\ntest_parse_empty (test_util.TestRange) ... ok\ntest_parse_range (test_util.TestRange) ... ok\ntest_parse_slice (test_util.TestRange) ... ok\ntest_access_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_authenticated_call (test_oauth.TestOAuthSession) ... skipped ''\ntest_concat (test_oauth.TestOAuthSession) ... ok\ntest_dunder_call (test_oauth.TestOAuthSession) ... ok\ntest_generate_signature (test_oauth.TestOAuthSession) ... ok\ntest_nonce (test_oauth.TestOAuthSession) ... ok\ntest_quote (test_oauth.TestOAuthSession) ... ok\ntest_request_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_alternative (test_formatter.TestFormatter) ... ok\ntest_chain_special (test_formatter.TestFormatter) ... ok\ntest_conversions (test_formatter.TestFormatter) ... ok\ntest_datetime (test_formatter.TestFormatter) ... ok\ntest_dict_access (test_formatter.TestFormatter) ... ok\ntest_expression (test_formatter.TestFormatter) ... ok\ntest_fmt_func (test_formatter.TestFormatter) ... ok\ntest_fstring (test_formatter.TestFormatter) ... ok\ntest_globals_env (test_formatter.TestFormatter) ... ok\ntest_globals_now (test_formatter.TestFormatter) ... ok\ntest_indexing (test_formatter.TestFormatter) ... ok\ntest_join (test_formatter.TestFormatter) ... ok\ntest_literals (test_formatter.TestFormatter) ... ok\ntest_maxlen (test_formatter.TestFormatter) ... ok\ntest_missing (test_formatter.TestFormatter) ... ok\ntest_missing_custom_default (test_formatter.TestFormatter) ... ok\ntest_module (test_formatter.TestFormatter) ... ok\ntest_offset (test_formatter.TestFormatter) ... ok\ntest_optional (test_formatter.TestFormatter) ... ok\ntest_replace (test_formatter.TestFormatter) ... ok\ntest_separator (test_formatter.TestFormatter) ... ok\ntest_slice_bytes (test_formatter.TestFormatter) ... ok\ntest_slice_str (test_formatter.TestFormatter) ... ok\ntest_sort (test_formatter.TestFormatter) ... ok\ntest_template (test_formatter.TestFormatter) ... ok\ntest_template_fstring (test_formatter.TestFormatter) ... ok\ntest_ensure_http_scheme (test_text.TestText) ... ok\ntest_ext_from_url (test_text.TestText) ... ok\ntest_extr (test_text.TestText) ... ok\ntest_extract (test_text.TestText) ... ok\ntest_extract_all (test_text.TestText) ... ok\ntest_extract_from (test_text.TestText) ... ok\ntest_extract_iter (test_text.TestText) ... ok\ntest_filename_from_url (test_text.TestText) ... ok\ntest_nameext_from_url (test_text.TestText) ... ok\ntest_parse_bytes (test_text.TestText) ... ok\ntest_parse_datetime (test_text.TestText) ... ok\ntest_parse_float (test_text.TestText) ... ok\ntest_parse_int (test_text.TestText) ... ok\ntest_parse_query (test_text.TestText) ... ok\ntest_parse_timestamp (test_text.TestText) ... ok\ntest_parse_unicode_escapes (test_text.TestText) ... ok\ntest_remove_html (test_text.TestText) ... ok\ntest_rextract (test_text.TestText) ... ok\ntest_root_from_url (test_text.TestText) ... ok\ntest_slugify (test_text.TestText) ... ok\ntest_split_html (test_text.TestText) ... ok\ntest_cache (test_downloader.TestDownloaderModule) ... ok\ntest_cache_http (test_downloader.TestDownloaderModule) ... ok\ntest_cache_https (test_downloader.TestDownloaderModule) ... ok\ntest_find (test_downloader.TestDownloaderModule) ... ok\nERROR\nERROR\ntest_shorten (test_output.TestShorten) ... ok\ntest_shorten_noop (test_output.TestShorten) ... ok\ntest_shorten_separator (test_output.TestShorten) ... ok\ntest_shorten_eaw (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_mix (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_noop (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_mix_ (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_wide (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_wide (test_output.TestShortenEAW) ... ok\ntest_cookie_login (test_cookies.TestCookieLogin) ... ERROR\ntest_check_cookies (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_domain (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_expires (test_cookies.TestCookieUtils) ... ERROR\ntest_dict (test_cookies.TestCookiedict) ... ERROR\ntest_domain (test_cookies.TestCookiedict) ... ERROR\ntest_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_filename (test_cookies.TestCookiejar) ... ERROR\ntest_ascii (test_job.TestDataJob) ... ok\ntest_default (test_job.TestDataJob) ... ok\ntest_exception (test_job.TestDataJob) ... ok\ntest_num_string (test_job.TestDataJob) ... ok\ntest_private (test_job.TestDataJob) ... ok\ntest_sleep (test_job.TestDataJob) ... ok\ntest_extractor_filter (test_job.TestDownloadJob) ... ok\ntest_base_category (test_job.TestInfoJob) ... ok\ntest_custom (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestKeywordJob) ... ok\ntest_child (test_job.TestUrlJob) ... ok\ntest_default (test_job.TestUrlJob) ... ok\ntest_fallback (test_job.TestUrlJob) ... ok\ntest_parent (test_job.TestUrlJob) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_remuxs_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries_extractor (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_database_read (test_cache.TestCache) ... ok\ntest_decorator (test_cache.TestCache) ... ok\ntest_expires_db (test_cache.TestCache) ... ok\ntest_expires_mem (test_cache.TestCache) ... ok\ntest_invalidate_db (test_cache.TestCache) ... ok\ntest_invalidate_mem (test_cache.TestCache) ... ok\ntest_invalidate_mem_simple (test_cache.TestCache) ... ok\ntest_keyarg_db (test_cache.TestCache) ... ok\ntest_keyarg_mem (test_cache.TestCache) ... ok\ntest_keyarg_mem_simple (test_cache.TestCache) ... ok\ntest_update_db (test_cache.TestCache) ... ok\ntest_update_mem (test_cache.TestCache) ... ok\ntest_update_mem_simple (test_cache.TestCache) ... ok\ntest_add (test_extractor.TestExtractorModule) ... ERROR\ntest_add_module (test_extractor.TestExtractorModule) ... ERROR\ntest_categories (test_extractor.TestExtractorModule) ... ok\ntest_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness ... ERROR\ntest_find (test_extractor.TestExtractorModule) ... ERROR\ntest_from_url (test_extractor.TestExtractorModule) ... ERROR\ntest_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize() ... ERROR\ntest_init_ytdl (test_extractor.TestExtractorModule) ... ERROR\ntest_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor ... ERROR\ntest_unique_pattern_matches (test_extractor.TestExtractorModule) ... ERROR\ntest_wait_seconds (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until_datetime (test_extractor.TestExtractorWait) ... ERROR\ntest_oauth1 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth) ... ERROR\n\n======================================================================\nERROR: setUpClass (test_downloader.TestHTTPDownloader)\nunable to import test_postprocessor\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 174, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: setUpClass (test_downloader.TestTextDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 234, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookie_login (test_cookies.TestCookieLogin)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 118, in test_cookie_login\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 127, in test_check_cookies\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_domain (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 149, in test_check_cookies_domain\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_expires (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 171, in test_check_cookies_expires\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_dict (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 87, in test_dict\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_domain (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 95, in test_domain\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 49, in test_cookiefile\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 59, in test_invalid_cookiefile\n self._test_warning(self.invalid_cookiefile, ValueError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_filename (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 62, in test_invalid_filename\n self._test_warning(join(self.path.name, \"nothing\"), FileNotFoundError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_add (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 71, in test_add\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_add_module (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 78, in test_add_module\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 175, in test_docstrings\n for extr1 in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_find (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 59, in test_find\n result = extractor.find(uri)\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_from_url (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 88, in test_from_url\n cls = extractor.find(uri).__class__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize()\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 152, in test_init\n for cls in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init_ytdl (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 164, in test_init_ytdl\n extr = extractor.find(\"ytdl:\")\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 191, in test_names\n for extr in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_unique_pattern_matches (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 124, in test_unique_pattern_matches\n for extr2 in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_wait_seconds (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 209, in test_wait_seconds\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1393, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1366, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 222, in test_wait_until\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1393, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1366, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until_datetime (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 238, in test_wait_until_datetime\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1393, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1366, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_oauth1 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 268, in test_oauth1\n with patch.object(extr, \"_oauth1_authorization_flow\") as m:\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1393, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1366, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth1_authorization_flow'\n\n======================================================================\nERROR: test_oauth2 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 277, in test_oauth2\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m:\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1393, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1366, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 285, in test_oauth2_mastodon\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1393, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1366, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 295, in test_oauth2_mastodon_unknown\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1393, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/unittest/mock.py\", line 1366, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n----------------------------------------------------------------------\nRan 214 tests in 1.366s\n\nFAILED (errors=27, skipped=3)\nmake: *** [Makefile:22: test] Error 1\n##[error]Process completed with exit code 2.\n"}, {"step_name": "build (3.9)/8_Run tests.txt", "log": "##[group]Run make test\n\u001b[36;1mmake test\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n pythonLocation: /opt/hostedtoolcache/Python/3.9.18/x64\n PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.9.18/x64/lib/pkgconfig\n Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.9.18/x64\n Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.9.18/x64\n Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.9.18/x64\n LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.18/x64/lib\n##[endgroup]\nscripts/run_tests.py\ntest_accumulate (test_config.TestConfig) ... ok\ntest_apply (test_config.TestConfig) ... ok\ntest_get (test_config.TestConfig) ... ok\ntest_interpolate (test_config.TestConfig) ... ok\ntest_interpolate_common (test_config.TestConfig) ... ok\ntest_load (test_config.TestConfig) ... ok\ntest_set (test_config.TestConfig) ... ok\ntest_setdefault (test_config.TestConfig) ... ok\ntest_unset (test_config.TestConfig) ... ok\ntest_default_config (test_config.TestConfigFiles) ... ok\ntest_example_config (test_config.TestConfigFiles) ... ok\ntest_cookiestxt_load (test_util.TestCookiesTxt) ... ok\ntest_cookiestxt_store (test_util.TestCookiesTxt) ... ok\ntest_code_to_language (test_util.TestISO639_1) ... ok\ntest_language_to_code (test_util.TestISO639_1) ... ok\ntest_advance (test_util.TestOther) ... ok\ntest_bdecode (test_util.TestOther) ... ok\ntest_bencode (test_util.TestOther) ... ok\ntest_bencode_bdecode (test_util.TestOther) ... ok\ntest_build_duration_func (test_util.TestOther) ... ok\ntest_combine_dict (test_util.TestOther) ... ok\ntest_compile_expression (test_util.TestOther) ... ok\ntest_contains (test_util.TestOther) ... ok\ntest_custom_globals (test_util.TestOther) ... ok\ntest_datetime_to_timestamp (test_util.TestOther) ... ok\ntest_datetime_to_timestamp_string (test_util.TestOther) ... ok\ntest_enumerate_reversed (test_util.TestOther) ... ok\ntest_extractor_filter (test_util.TestOther) ... ok\ntest_filter_dict (test_util.TestOther) ... ok\ntest_format_value (test_util.TestOther) ... ok\ntest_generate_token (test_util.TestOther) ... ok\ntest_identity (test_util.TestOther) ... ok\ntest_import_file (test_util.TestOther) ... ok\ntest_md5 (test_util.TestOther) ... ok\ntest_noop (test_util.TestOther) ... ok\ntest_number_to_string (test_util.TestOther) ... ok\ntest_raises (test_util.TestOther) ... ok\ntest_sha1 (test_util.TestOther) ... ok\ntest_to_string (test_util.TestOther) ... ok\ntest_transform_dict (test_util.TestOther) ... ok\ntest_unique (test_util.TestOther) ... ok\ntest_unique_sequence (test_util.TestOther) ... ok\ntest_universal_none (test_util.TestOther) ... ok\ntest_build_predicate (test_util.TestPredicate) ... ok\ntest_filter_predicate (test_util.TestPredicate) ... ok\ntest_range_predicate (test_util.TestPredicate) ... ok\ntest_unique_predicate (test_util.TestPredicate) ... ok\ntest_parse_digit (test_util.TestRange) ... ok\ntest_parse_empty (test_util.TestRange) ... ok\ntest_parse_range (test_util.TestRange) ... ok\ntest_parse_slice (test_util.TestRange) ... ok\ntest_access_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_authenticated_call (test_oauth.TestOAuthSession) ... skipped ''\ntest_concat (test_oauth.TestOAuthSession) ... ok\ntest_dunder_call (test_oauth.TestOAuthSession) ... ok\ntest_generate_signature (test_oauth.TestOAuthSession) ... ok\ntest_nonce (test_oauth.TestOAuthSession) ... ok\ntest_quote (test_oauth.TestOAuthSession) ... ok\ntest_request_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_alternative (test_formatter.TestFormatter) ... ok\ntest_chain_special (test_formatter.TestFormatter) ... ok\ntest_conversions (test_formatter.TestFormatter) ... ok\ntest_datetime (test_formatter.TestFormatter) ... ok\ntest_dict_access (test_formatter.TestFormatter) ... ok\ntest_expression (test_formatter.TestFormatter) ... ok\ntest_fmt_func (test_formatter.TestFormatter) ... ok\ntest_fstring (test_formatter.TestFormatter) ... ok\ntest_globals_env (test_formatter.TestFormatter) ... ok\ntest_globals_now (test_formatter.TestFormatter) ... ok\ntest_indexing (test_formatter.TestFormatter) ... ok\ntest_join (test_formatter.TestFormatter) ... ok\ntest_literals (test_formatter.TestFormatter) ... ok\ntest_maxlen (test_formatter.TestFormatter) ... ok\ntest_missing (test_formatter.TestFormatter) ... ok\ntest_missing_custom_default (test_formatter.TestFormatter) ... ok\ntest_module (test_formatter.TestFormatter) ... ok\ntest_offset (test_formatter.TestFormatter) ... ok\ntest_optional (test_formatter.TestFormatter) ... ok\ntest_replace (test_formatter.TestFormatter) ... ok\ntest_separator (test_formatter.TestFormatter) ... ok\ntest_slice_bytes (test_formatter.TestFormatter) ... ok\ntest_slice_str (test_formatter.TestFormatter) ... ok\ntest_sort (test_formatter.TestFormatter) ... ok\ntest_template (test_formatter.TestFormatter) ... ok\ntest_template_fstring (test_formatter.TestFormatter) ... ok\ntest_ensure_http_scheme (test_text.TestText) ... ok\ntest_ext_from_url (test_text.TestText) ... ok\ntest_extr (test_text.TestText) ... ok\ntest_extract (test_text.TestText) ... ok\ntest_extract_all (test_text.TestText) ... ok\ntest_extract_from (test_text.TestText) ... ok\ntest_extract_iter (test_text.TestText) ... ok\ntest_filename_from_url (test_text.TestText) ... ok\ntest_nameext_from_url (test_text.TestText) ... ok\ntest_parse_bytes (test_text.TestText) ... ok\ntest_parse_datetime (test_text.TestText) ... ok\ntest_parse_float (test_text.TestText) ... ok\ntest_parse_int (test_text.TestText) ... ok\ntest_parse_query (test_text.TestText) ... ok\ntest_parse_timestamp (test_text.TestText) ... ok\ntest_parse_unicode_escapes (test_text.TestText) ... ok\ntest_remove_html (test_text.TestText) ... ok\ntest_rextract (test_text.TestText) ... ok\ntest_root_from_url (test_text.TestText) ... ok\ntest_slugify (test_text.TestText) ... ok\ntest_split_html (test_text.TestText) ... ok\ntest_cache (test_downloader.TestDownloaderModule) ... ok\ntest_cache_http (test_downloader.TestDownloaderModule) ... ok\ntest_cache_https (test_downloader.TestDownloaderModule) ... ok\ntest_find (test_downloader.TestDownloaderModule) ... ok\nERROR\nERROR\ntest_shorten (test_output.TestShorten) ... ok\ntest_shorten_noop (test_output.TestShorten) ... ok\ntest_shorten_separator (test_output.TestShorten) ... ok\ntest_shorten_eaw (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_mix (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_noop (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_mix_ (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_wide (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_wide (test_output.TestShortenEAW) ... ok\ntest_cookie_login (test_cookies.TestCookieLogin) ... ERROR\ntest_check_cookies (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_domain (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_expires (test_cookies.TestCookieUtils) ... ERROR\ntest_dict (test_cookies.TestCookiedict) ... ERROR\ntest_domain (test_cookies.TestCookiedict) ... ERROR\ntest_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_filename (test_cookies.TestCookiejar) ... ERROR\ntest_ascii (test_job.TestDataJob) ... ok\ntest_default (test_job.TestDataJob) ... ok\ntest_exception (test_job.TestDataJob) ... ok\ntest_num_string (test_job.TestDataJob) ... ok\ntest_private (test_job.TestDataJob) ... ok\ntest_sleep (test_job.TestDataJob) ... ok\ntest_extractor_filter (test_job.TestDownloadJob) ... ok\ntest_base_category (test_job.TestInfoJob) ... ok\ntest_custom (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestKeywordJob) ... ok\ntest_child (test_job.TestUrlJob) ... ok\ntest_default (test_job.TestUrlJob) ... ok\ntest_fallback (test_job.TestUrlJob) ... ok\ntest_parent (test_job.TestUrlJob) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_remuxs_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries_extractor (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_database_read (test_cache.TestCache) ... ok\ntest_decorator (test_cache.TestCache) ... ok\ntest_expires_db (test_cache.TestCache) ... ok\ntest_expires_mem (test_cache.TestCache) ... ok\ntest_invalidate_db (test_cache.TestCache) ... ok\ntest_invalidate_mem (test_cache.TestCache) ... ok\ntest_invalidate_mem_simple (test_cache.TestCache) ... ok\ntest_keyarg_db (test_cache.TestCache) ... ok\ntest_keyarg_mem (test_cache.TestCache) ... ok\ntest_keyarg_mem_simple (test_cache.TestCache) ... ok\ntest_update_db (test_cache.TestCache) ... ok\ntest_update_mem (test_cache.TestCache) ... ok\ntest_update_mem_simple (test_cache.TestCache) ... ok\ntest_add (test_extractor.TestExtractorModule) ... ERROR\ntest_add_module (test_extractor.TestExtractorModule) ... ERROR\ntest_categories (test_extractor.TestExtractorModule) ... ok\ntest_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness ... ERROR\ntest_find (test_extractor.TestExtractorModule) ... ERROR\ntest_from_url (test_extractor.TestExtractorModule) ... ERROR\ntest_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize() ... ERROR\ntest_init_ytdl (test_extractor.TestExtractorModule) ... ERROR\ntest_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor ... ERROR\ntest_unique_pattern_matches (test_extractor.TestExtractorModule) ... ERROR\ntest_wait_seconds (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until_datetime (test_extractor.TestExtractorWait) ... ERROR\ntest_oauth1 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth) ... ERROR\n\n======================================================================\nERROR: setUpClass (test_downloader.TestHTTPDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 174, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: setUpClass (test_downloader.TestTextDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 234, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nunable to import test_postprocessor\nERROR: test_cookie_login (test_cookies.TestCookieLogin)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 118, in test_cookie_login\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 127, in test_check_cookies\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_domain (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 149, in test_check_cookies_domain\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_expires (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 171, in test_check_cookies_expires\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_dict (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 87, in test_dict\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_domain (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 95, in test_domain\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 49, in test_cookiefile\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 59, in test_invalid_cookiefile\n self._test_warning(self.invalid_cookiefile, ValueError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_filename (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 62, in test_invalid_filename\n self._test_warning(join(self.path.name, \"nothing\"), FileNotFoundError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_add (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 71, in test_add\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_add_module (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 78, in test_add_module\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 175, in test_docstrings\n for extr1 in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_find (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 59, in test_find\n result = extractor.find(uri)\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_from_url (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 88, in test_from_url\n cls = extractor.find(uri).__class__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize()\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 152, in test_init\n for cls in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init_ytdl (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 164, in test_init_ytdl\n extr = extractor.find(\"ytdl:\")\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 191, in test_names\n for extr in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_unique_pattern_matches (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 124, in test_unique_pattern_matches\n for extr2 in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_wait_seconds (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 209, in test_wait_seconds\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 222, in test_wait_until\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until_datetime (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 238, in test_wait_until_datetime\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_oauth1 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 268, in test_oauth1\n with patch.object(extr, \"_oauth1_authorization_flow\") as m:\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth1_authorization_flow'\n\n======================================================================\nERROR: test_oauth2 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 277, in test_oauth2\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m:\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 285, in test_oauth2_mastodon\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 295, in test_oauth2_mastodon_unknown\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n----------------------------------------------------------------------\nRan 214 tests in 1.444s\n\nFAILED (errors=27, skipped=3)\nmake: *** [Makefile:22: test] Error 1\n##[error]Process completed with exit code 2.\n"}, {"step_name": "build (3.10)/8_Run tests.txt", "log": "##[group]Run make test\n\u001b[36;1mmake test\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n pythonLocation: /opt/hostedtoolcache/Python/3.10.13/x64\n PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.10.13/x64/lib/pkgconfig\n Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.10.13/x64\n Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.10.13/x64\n Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.10.13/x64\n LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.10.13/x64/lib\n##[endgroup]\nscripts/run_tests.py\ntest_accumulate (test_config.TestConfig) ... ok\ntest_apply (test_config.TestConfig) ... ok\ntest_get (test_config.TestConfig) ... ok\ntest_interpolate (test_config.TestConfig) ... ok\ntest_interpolate_common (test_config.TestConfig) ... ok\ntest_load (test_config.TestConfig) ... ok\ntest_set (test_config.TestConfig) ... ok\ntest_setdefault (test_config.TestConfig) ... ok\ntest_unset (test_config.TestConfig) ... ok\ntest_default_config (test_config.TestConfigFiles) ... ok\ntest_example_config (test_config.TestConfigFiles) ... ok\ntest_cookiestxt_load (test_util.TestCookiesTxt) ... ok\ntest_cookiestxt_store (test_util.TestCookiesTxt) ... ok\ntest_code_to_language (test_util.TestISO639_1) ... ok\ntest_language_to_code (test_util.TestISO639_1) ... ok\ntest_advance (test_util.TestOther) ... ok\ntest_bdecode (test_util.TestOther) ... ok\ntest_bencode (test_util.TestOther) ... ok\ntest_bencode_bdecode (test_util.TestOther) ... ok\ntest_build_duration_func (test_util.TestOther) ... ok\ntest_combine_dict (test_util.TestOther) ... ok\ntest_compile_expression (test_util.TestOther) ... ok\ntest_contains (test_util.TestOther) ... ok\ntest_custom_globals (test_util.TestOther) ... ok\ntest_datetime_to_timestamp (test_util.TestOther) ... ok\ntest_datetime_to_timestamp_string (test_util.TestOther) ... ok\ntest_enumerate_reversed (test_util.TestOther) ... ok\ntest_extractor_filter (test_util.TestOther) ... ok\ntest_filter_dict (test_util.TestOther) ... ok\ntest_format_value (test_util.TestOther) ... ok\ntest_generate_token (test_util.TestOther) ... ok\ntest_identity (test_util.TestOther) ... ok\ntest_import_file (test_util.TestOther) ... ok\ntest_md5 (test_util.TestOther) ... ok\ntest_noop (test_util.TestOther) ... ok\ntest_number_to_string (test_util.TestOther) ... ok\ntest_raises (test_util.TestOther) ... ok\ntest_sha1 (test_util.TestOther) ... ok\ntest_to_string (test_util.TestOther) ... ok\ntest_transform_dict (test_util.TestOther) ... ok\ntest_unique (test_util.TestOther) ... ok\ntest_unique_sequence (test_util.TestOther) ... ok\ntest_universal_none (test_util.TestOther) ... ok\ntest_build_predicate (test_util.TestPredicate) ... ok\ntest_filter_predicate (test_util.TestPredicate) ... ok\ntest_range_predicate (test_util.TestPredicate) ... ok\ntest_unique_predicate (test_util.TestPredicate) ... ok\ntest_parse_digit (test_util.TestRange) ... ok\ntest_parse_empty (test_util.TestRange) ... ok\ntest_parse_range (test_util.TestRange) ... ok\ntest_parse_slice (test_util.TestRange) ... ok\ntest_access_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_authenticated_call (test_oauth.TestOAuthSession) ... skipped ''\ntest_concat (test_oauth.TestOAuthSession) ... ok\ntest_dunder_call (test_oauth.TestOAuthSession) ... ok\ntest_generate_signature (test_oauth.TestOAuthSession) ... ok\ntest_nonce (test_oauth.TestOAuthSession) ... ok\ntest_quote (test_oauth.TestOAuthSession) ... ok\ntest_request_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_alternative (test_formatter.TestFormatter) ... ok\ntest_chain_special (test_formatter.TestFormatter) ... ok\ntest_conversions (test_formatter.TestFormatter) ... ok\ntest_datetime (test_formatter.TestFormatter) ... ok\ntest_dict_access (test_formatter.TestFormatter) ... ok\ntest_expression (test_formatter.TestFormatter) ... ok\ntest_fmt_func (test_formatter.TestFormatter) ... ok\ntest_fstring (test_formatter.TestFormatter) ... ok\ntest_globals_env (test_formatter.TestFormatter) ... ok\ntest_globals_now (test_formatter.TestFormatter) ... ok\ntest_indexing (test_formatter.TestFormatter) ... ok\ntest_join (test_formatter.TestFormatter) ... ok\ntest_literals (test_formatter.TestFormatter) ... ok\ntest_maxlen (test_formatter.TestFormatter) ... ok\ntest_missing (test_formatter.TestFormatter) ... ok\ntest_missing_custom_default (test_formatter.TestFormatter) ... ok\ntest_module (test_formatter.TestFormatter) ... ok\ntest_offset (test_formatter.TestFormatter) ... ok\ntest_optional (test_formatter.TestFormatter) ... ok\ntest_replace (test_formatter.TestFormatter) ... ok\ntest_separator (test_formatter.TestFormatter) ... ok\ntest_slice_bytes (test_formatter.TestFormatter) ... ok\ntest_slice_str (test_formatter.TestFormatter) ... ok\ntest_sort (test_formatter.TestFormatter) ... ok\ntest_template (test_formatter.TestFormatter) ... ok\ntest_template_fstring (test_formatter.TestFormatter) ... ok\ntest_ensure_http_scheme (test_text.TestText) ... ok\ntest_ext_from_url (test_text.TestText) ... ok\ntest_extr (test_text.TestText) ... ok\ntest_extract (test_text.TestText) ... ok\ntest_extract_all (test_text.TestText) ... ok\ntest_extract_from (test_text.TestText) ... ok\ntest_extract_iter (test_text.TestText) ... ok\ntest_filename_from_url (test_text.TestText) ... ok\ntest_nameext_from_url (test_text.TestText) ... ok\ntest_parse_bytes (test_text.TestText) ... ok\ntest_parse_datetime (test_text.TestText) ... ok\ntest_parse_float (test_text.TestText) ... ok\ntest_parse_int (test_text.TestText) ... ok\ntest_parse_query (test_text.TestText) ... ok\ntest_parse_timestamp (test_text.TestText) ... ok\ntest_parse_unicode_escapes (test_text.TestText) ... ok\ntest_remove_html (test_text.TestText) ... ok\ntest_rextract (test_text.TestText) ... ok\ntest_root_from_url (test_text.TestText) ... ok\ntest_slugify (test_text.TestText) ... ok\ntest_split_html (test_text.TestText) ... ok\ntest_cache (test_downloader.TestDownloaderModule) ... ok\ntest_cache_http (test_downloader.TestDownloaderModule) ... ok\ntest_cache_https (test_downloader.TestDownloaderModule) ... ok\ntest_find (test_downloader.TestDownloaderModule) ... ok\nERROR\nERROR\ntest_shorten (test_output.TestShorten) ... ok\ntest_shorten_noop (test_output.TestShorten) ... ok\ntest_shorten_separator (test_output.TestShorten) ... ok\ntest_shorten_eaw (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_mix (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_noop (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_mix_ (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_wide (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_wide (test_output.TestShortenEAW) ... ok\ntest_cookie_login (test_cookies.TestCookieLogin) ... ERROR\ntest_check_cookies (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_domain (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_expires (test_cookies.TestCookieUtils) ... ERROR\ntest_dict (test_cookies.TestCookiedict) ... ERROR\ntest_domain (test_cookies.TestCookiedict) ... ERROR\ntest_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_filename (test_cookies.TestCookiejar) ... ERROR\ntest_ascii (test_job.TestDataJob) ... ok\ntest_default (test_job.TestDataJob) ... ok\ntest_exception (test_job.TestDataJob) ... ok\ntest_num_string (test_job.TestDataJob) ... ok\ntest_private (test_job.TestDataJob) ... ok\ntest_sleep (test_job.TestDataJob) ... ok\ntest_extractor_filter (test_job.TestDownloadJob) ... ok\ntest_base_category (test_job.TestInfoJob) ... ok\ntest_custom (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestKeywordJob) ... ok\ntest_child (test_job.TestUrlJob) ... ok\ntest_default (test_job.TestUrlJob) ... ok\ntest_fallback (test_job.TestUrlJob) ... ok\ntest_parent (test_job.TestUrlJob) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_remuxs_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries_extractor (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_database_read (test_cache.TestCache) ... ok\ntest_decorator (test_cache.TestCache) ... ok\ntest_expires_db (test_cache.TestCache) ... ok\ntest_expires_mem (test_cache.TestCache) ... ok\ntest_invalidate_db (test_cache.TestCache) ... ok\ntest_invalidate_mem (test_cache.TestCache) ... ok\ntest_invalidate_mem_simple (test_cache.TestCache) ... ok\ntest_keyarg_db (test_cache.TestCache) ... ok\ntest_keyarg_mem (test_cache.TestCache) ... ok\ntest_keyarg_mem_simple (test_cache.TestCache) ... ok\ntest_update_db (test_cache.TestCache) ... ok\ntest_update_mem (test_cache.TestCache) ... ok\ntest_update_mem_simple (test_cache.TestCache) ... ok\ntest_add (test_extractor.TestExtractorModule) ... ERROR\ntest_add_module (test_extractor.TestExtractorModule) ... ERROR\ntest_categories (test_extractor.TestExtractorModule) ... ok\ntest_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness ... ERROR\ntest_find (test_extractor.TestExtractorModule) ... ERROR\ntest_from_url (test_extractor.TestExtractorModule) ... ERROR\ntest_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize() ... ERROR\ntest_init_ytdl (test_extractor.TestExtractorModule) ... ERROR\ntest_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor ... ERROR\ntest_unique_pattern_matches (test_extractor.TestExtractorModule) ... ERROR\ntest_wait_seconds (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until_datetime (test_extractor.TestExtractorWait) ... ERROR\ntest_oauth1 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth) ... ERROR\n\n======================================================================\nERROR: setUpClass (test_downloader.TestHTTPDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 174, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: setUpClass (test_downloader.TestTextDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 234, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookie_login (test_cookies.TestCookieLogin)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 118, in test_cookie_login\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 127, in test_check_cookies\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_domain (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 149, in test_check_cookies_domain\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_expires (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 171, in test_check_cookies_expires\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_dict (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 87, in test_dict\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_domain (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 95, in test_domain\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 49, in test_cookiefile\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 59, in test_invalid_cookiefile\n self._test_warning(self.invalid_cookiefile, ValueError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_filename (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 62, in test_invalid_filename\n self._test_warning(join(self.path.name, \"nothing\"), FileNotFoundError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_add (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 71, in test_add\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_add_module (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 78, in test_add_module\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 175, in test_docstrings\n for extr1 in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_find (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 59, in test_find\n result = extractor.find(uri)\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_from_url (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 88, in test_from_url\n cls = extractor.find(uri).__class__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize()\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 152, in test_init\n for cls in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init_ytdl (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 164, in test_init_ytdl\n extr = extractor.find(\"ytdl:\")\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 191, in test_names\n for extr in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_unique_pattern_matches (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 124, in test_unique_pattern_matches\n for extr2 in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_wait_seconds (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 209, in test_wait_seconds\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1447, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1420, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 222, in test_wait_until\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1447, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1420, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until_datetime (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 238, in test_wait_until_datetime\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1447, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1420, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_oauth1 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 268, in test_oauth1\n with patch.object(extr, \"_oauth1_authorization_flow\") as m:\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1447, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1420, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth1_authorization_flow'\n\n======================================================================\nERROR: test_oauth2 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 277, in test_oauth2\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m:\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1447, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1420, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 285, in test_oauth2_mastodon\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1447, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1420, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 295, in test_oauth2_mastodon_unknown\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1447, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/Python/3.10.13/x64/lib/python3.10/unittest/mock.py\", line 1420, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n----------------------------------------------------------------------\nRan 214 tests in 1.563s\n\nFAILED (errors=27, skipped=3)\nunable to import test_postprocessor\nmake: *** [Makefile:22: test] Error 1\n##[error]Process completed with exit code 2.\n"}, {"step_name": "build (3.11)/8_Run tests.txt", "log": "##[group]Run make test\n\u001b[36;1mmake test\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n pythonLocation: /opt/hostedtoolcache/Python/3.11.7/x64\n PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.11.7/x64/lib/pkgconfig\n Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.7/x64\n Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.7/x64\n Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.7/x64\n LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.11.7/x64/lib\n##[endgroup]\nscripts/run_tests.py\ntest_accumulate (test_config.TestConfig.test_accumulate) ... ok\ntest_apply (test_config.TestConfig.test_apply) ... ok\ntest_get (test_config.TestConfig.test_get) ... ok\ntest_interpolate (test_config.TestConfig.test_interpolate) ... ok\ntest_interpolate_common (test_config.TestConfig.test_interpolate_common) ... ok\ntest_load (test_config.TestConfig.test_load) ... ok\ntest_set (test_config.TestConfig.test_set) ... ok\ntest_setdefault (test_config.TestConfig.test_setdefault) ... ok\ntest_unset (test_config.TestConfig.test_unset) ... ok\ntest_default_config (test_config.TestConfigFiles.test_default_config) ... ok\ntest_example_config (test_config.TestConfigFiles.test_example_config) ... ok\ntest_cookiestxt_load (test_util.TestCookiesTxt.test_cookiestxt_load) ... ok\ntest_cookiestxt_store (test_util.TestCookiesTxt.test_cookiestxt_store) ... ok\ntest_code_to_language (test_util.TestISO639_1.test_code_to_language) ... ok\ntest_language_to_code (test_util.TestISO639_1.test_language_to_code) ... ok\ntest_advance (test_util.TestOther.test_advance) ... ok\ntest_bdecode (test_util.TestOther.test_bdecode) ... ok\ntest_bencode (test_util.TestOther.test_bencode) ... ok\ntest_bencode_bdecode (test_util.TestOther.test_bencode_bdecode) ... ok\ntest_build_duration_func (test_util.TestOther.test_build_duration_func) ... ok\ntest_combine_dict (test_util.TestOther.test_combine_dict) ... ok\ntest_compile_expression (test_util.TestOther.test_compile_expression) ... ok\ntest_contains (test_util.TestOther.test_contains) ... ok\ntest_custom_globals (test_util.TestOther.test_custom_globals) ... ok\ntest_datetime_to_timestamp (test_util.TestOther.test_datetime_to_timestamp) ... ok\ntest_datetime_to_timestamp_string (test_util.TestOther.test_datetime_to_timestamp_string) ... ok\ntest_enumerate_reversed (test_util.TestOther.test_enumerate_reversed) ... ok\ntest_extractor_filter (test_util.TestOther.test_extractor_filter) ... ok\ntest_filter_dict (test_util.TestOther.test_filter_dict) ... ok\ntest_format_value (test_util.TestOther.test_format_value) ... ok\ntest_generate_token (test_util.TestOther.test_generate_token) ... ok\ntest_identity (test_util.TestOther.test_identity) ... ok\ntest_import_file (test_util.TestOther.test_import_file) ... ok\ntest_md5 (test_util.TestOther.test_md5) ... ok\ntest_noop (test_util.TestOther.test_noop) ... ok\ntest_number_to_string (test_util.TestOther.test_number_to_string) ... ok\ntest_raises (test_util.TestOther.test_raises) ... ok\ntest_sha1 (test_util.TestOther.test_sha1) ... ok\ntest_to_string (test_util.TestOther.test_to_string) ... ok\ntest_transform_dict (test_util.TestOther.test_transform_dict) ... ok\ntest_unique (test_util.TestOther.test_unique) ... ok\ntest_unique_sequence (test_util.TestOther.test_unique_sequence) ... ok\ntest_universal_none (test_util.TestOther.test_universal_none) ... ok\ntest_build_predicate (test_util.TestPredicate.test_build_predicate) ... ok\ntest_filter_predicate (test_util.TestPredicate.test_filter_predicate) ... ok\ntest_range_predicate (test_util.TestPredicate.test_range_predicate) ... ok\ntest_unique_predicate (test_util.TestPredicate.test_unique_predicate) ... ok\ntest_parse_digit (test_util.TestRange.test_parse_digit) ... ok\ntest_parse_empty (test_util.TestRange.test_parse_empty) ... ok\ntest_parse_range (test_util.TestRange.test_parse_range) ... ok\ntest_parse_slice (test_util.TestRange.test_parse_slice) ... ok\ntest_access_token (test_oauth.TestOAuthSession.test_access_token) ... skipped ''\ntest_authenticated_call (test_oauth.TestOAuthSession.test_authenticated_call) ... skipped ''\ntest_concat (test_oauth.TestOAuthSession.test_concat) ... ok\ntest_dunder_call (test_oauth.TestOAuthSession.test_dunder_call) ... ok\ntest_generate_signature (test_oauth.TestOAuthSession.test_generate_signature) ... ok\ntest_nonce (test_oauth.TestOAuthSession.test_nonce) ... ok\ntest_quote (test_oauth.TestOAuthSession.test_quote) ... ok\ntest_request_token (test_oauth.TestOAuthSession.test_request_token) ... skipped ''\ntest_alternative (test_formatter.TestFormatter.test_alternative) ... ok\ntest_chain_special (test_formatter.TestFormatter.test_chain_special) ... ok\ntest_conversions (test_formatter.TestFormatter.test_conversions) ... ok\ntest_datetime (test_formatter.TestFormatter.test_datetime) ... ok\ntest_dict_access (test_formatter.TestFormatter.test_dict_access) ... ok\ntest_expression (test_formatter.TestFormatter.test_expression) ... ok\ntest_fmt_func (test_formatter.TestFormatter.test_fmt_func) ... ok\ntest_fstring (test_formatter.TestFormatter.test_fstring) ... ok\ntest_globals_env (test_formatter.TestFormatter.test_globals_env) ... ok\ntest_globals_now (test_formatter.TestFormatter.test_globals_now) ... ok\ntest_indexing (test_formatter.TestFormatter.test_indexing) ... ok\ntest_join (test_formatter.TestFormatter.test_join) ... ok\ntest_literals (test_formatter.TestFormatter.test_literals) ... ok\ntest_maxlen (test_formatter.TestFormatter.test_maxlen) ... ok\ntest_missing (test_formatter.TestFormatter.test_missing) ... ok\ntest_missing_custom_default (test_formatter.TestFormatter.test_missing_custom_default) ... ok\ntest_module (test_formatter.TestFormatter.test_module) ... ok\ntest_offset (test_formatter.TestFormatter.test_offset) ... ok\ntest_optional (test_formatter.TestFormatter.test_optional) ... ok\ntest_replace (test_formatter.TestFormatter.test_replace) ... ok\ntest_separator (test_formatter.TestFormatter.test_separator) ... ok\ntest_slice_bytes (test_formatter.TestFormatter.test_slice_bytes) ... ok\ntest_slice_str (test_formatter.TestFormatter.test_slice_str) ... ok\ntest_sort (test_formatter.TestFormatter.test_sort) ... ok\ntest_template (test_formatter.TestFormatter.test_template) ... ok\ntest_template_fstring (test_formatter.TestFormatter.test_template_fstring) ... ok\ntest_ensure_http_scheme (test_text.TestText.test_ensure_http_scheme) ... ok\ntest_ext_from_url (test_text.TestText.test_ext_from_url) ... ok\ntest_extr (test_text.TestText.test_extr) ... ok\ntest_extract (test_text.TestText.test_extract) ... ok\ntest_extract_all (test_text.TestText.test_extract_all) ... ok\ntest_extract_from (test_text.TestText.test_extract_from) ... ok\ntest_extract_iter (test_text.TestText.test_extract_iter) ... ok\ntest_filename_from_url (test_text.TestText.test_filename_from_url) ... ok\ntest_nameext_from_url (test_text.TestText.test_nameext_from_url) ... ok\ntest_parse_bytes (test_text.TestText.test_parse_bytes) ... ok\ntest_parse_datetime (test_text.TestText.test_parse_datetime) ... ok\ntest_parse_float (test_text.TestText.test_parse_float) ... ok\ntest_parse_int (test_text.TestText.test_parse_int) ... ok\ntest_parse_query (test_text.TestText.test_parse_query) ... ok\ntest_parse_timestamp (test_text.TestText.test_parse_timestamp) ... ok\ntest_parse_unicode_escapes (test_text.TestText.test_parse_unicode_escapes) ... ok\ntest_remove_html (test_text.TestText.test_remove_html) ... ok\ntest_rextract (test_text.TestText.test_rextract) ... ok\ntest_root_from_url (test_text.TestText.test_root_from_url) ... ok\ntest_slugify (test_text.TestText.test_slugify) ... ok\ntest_split_html (test_text.TestText.test_split_html) ... ok\ntest_cache (test_downloader.TestDownloaderModule.test_cache) ... ok\ntest_cache_http (test_downloader.TestDownloaderModule.test_cache_http) ... ok\ntest_cache_https (test_downloader.TestDownloaderModule.test_cache_https) ... ok\ntest_find (test_downloader.TestDownloaderModule.test_find) ... ok\nsetUpClass (test_downloader.TestHTTPDownloader) ... ERROR\nsetUpClass (test_downloader.TestTextDownloader) ... ERROR\ntest_shorten (test_output.TestShorten.test_shorten) ... ok\ntest_shorten_noop (test_output.TestShorten.test_shorten_noop) ... ok\ntest_shorten_separator (test_output.TestShorten.test_shorten_separator) ... ok\ntest_shorten_eaw (test_output.TestShortenEAW.test_shorten_eaw) ... ok\ntest_shorten_eaw_mix (test_output.TestShortenEAW.test_shorten_eaw_mix) ... ok\ntest_shorten_eaw_noop (test_output.TestShortenEAW.test_shorten_eaw_noop) ... ok\ntest_shorten_eaw_separator (test_output.TestShortenEAW.test_shorten_eaw_separator) ... ok\ntest_shorten_eaw_separator_mix_ (test_output.TestShortenEAW.test_shorten_eaw_separator_mix_) ... ok\ntest_shorten_eaw_separator_wide (test_output.TestShortenEAW.test_shorten_eaw_separator_wide) ... ok\ntest_shorten_eaw_wide (test_output.TestShortenEAW.test_shorten_eaw_wide) ... ok\ntest_cookie_login (test_cookies.TestCookieLogin.test_cookie_login) ... ERROR\ntest_check_cookies (test_cookies.TestCookieUtils.test_check_cookies) ... ERROR\ntest_check_cookies_domain (test_cookies.TestCookieUtils.test_check_cookies_domain) ... ERROR\ntest_check_cookies_expires (test_cookies.TestCookieUtils.test_check_cookies_expires) ... ERROR\ntest_dict (test_cookies.TestCookiedict.test_dict) ... ERROR\ntest_domain (test_cookies.TestCookiedict.test_domain) ... ERROR\ntest_cookiefile (test_cookies.TestCookiejar.test_cookiefile) ... ERROR\ntest_invalid_cookiefile (test_cookies.TestCookiejar.test_invalid_cookiefile) ... ERROR\ntest_invalid_filename (test_cookies.TestCookiejar.test_invalid_filename) ... ERROR\ntest_ascii (test_job.TestDataJob.test_ascii) ... ok\ntest_default (test_job.TestDataJob.test_default) ... ok\ntest_exception (test_job.TestDataJob.test_exception) ... ok\ntest_num_string (test_job.TestDataJob.test_num_string) ... ok\ntest_private (test_job.TestDataJob.test_private) ... ok\ntest_sleep (test_job.TestDataJob.test_sleep) ... ok\ntest_extractor_filter (test_job.TestDownloadJob.test_extractor_filter) ... ok\ntest_base_category (test_job.TestInfoJob.test_base_category) ... ok\ntest_custom (test_job.TestInfoJob.test_custom) ... ok\ntest_default (test_job.TestInfoJob.test_default) ... ok\ntest_default (test_job.TestKeywordJob.test_default) ... ok\ntest_child (test_job.TestUrlJob.test_child) ... ok\ntest_default (test_job.TestUrlJob.test_default) ... ok\ntest_fallback (test_job.TestUrlJob.test_fallback) ... ok\ntest_parent (test_job.TestUrlJob.test_parent) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments.test_authentication_options) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments.test_default_search) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments.test_embed) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments.test_extract_audio) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments.test_geo_bypass) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments.test_headers) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments.test_ignore_errors) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments.test_mark_watched) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments.test_metadata) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments.test_metadata_from_title) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments.test_network_options) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments.test_noop) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments.test_proxy) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments.test_recode_video) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments.test_retries) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments.test_subs) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments.test_subtitle_options) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments.test_thumbnail_options) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments.test_xattr) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments_YtDlp.test_authentication_options) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments_YtDlp.test_default_search) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments_YtDlp.test_embed) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments_YtDlp.test_extract_audio) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments_YtDlp.test_geo_bypass) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments_YtDlp.test_headers) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments_YtDlp.test_ignore_errors) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments_YtDlp.test_mark_watched) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments_YtDlp.test_metadata) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments_YtDlp.test_metadata_from_title) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments_YtDlp.test_network_options) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments_YtDlp.test_noop) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments_YtDlp.test_proxy) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments_YtDlp.test_recode_video) ... ok\ntest_remuxs_video (test_ytdl.Test_CommandlineArguments_YtDlp.test_remuxs_video) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments_YtDlp.test_retries) ... ok\ntest_retries_extractor (test_ytdl.Test_CommandlineArguments_YtDlp.test_retries_extractor) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments_YtDlp.test_subs) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments_YtDlp.test_subtitle_options) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments_YtDlp.test_thumbnail_options) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments_YtDlp.test_xattr) ... ok\ntest_database_read (test_cache.TestCache.test_database_read) ... ok\ntest_decorator (test_cache.TestCache.test_decorator) ... ok\ntest_expires_db (test_cache.TestCache.test_expires_db) ... ok\ntest_expires_mem (test_cache.TestCache.test_expires_mem) ... ok\ntest_invalidate_db (test_cache.TestCache.test_invalidate_db) ... ok\ntest_invalidate_mem (test_cache.TestCache.test_invalidate_mem) ... ok\ntest_invalidate_mem_simple (test_cache.TestCache.test_invalidate_mem_simple) ... ok\ntest_keyarg_db (test_cache.TestCache.test_keyarg_db) ... ok\ntest_keyarg_mem (test_cache.TestCache.test_keyarg_mem) ... ok\ntest_keyarg_mem_simple (test_cache.TestCache.test_keyarg_mem_simple) ... ok\ntest_update_db (test_cache.TestCache.test_update_db) ... ok\ntest_update_mem (test_cache.TestCache.test_update_mem) ... ok\ntest_update_mem_simple (test_cache.TestCache.test_update_mem_simple) ... ok\ntest_add (test_extractor.TestExtractorModule.test_add) ... ERROR\ntest_add_module (test_extractor.TestExtractorModule.test_add_module) ... ERROR\ntest_categories (test_extractor.TestExtractorModule.test_categories) ... ok\ntest_docstrings (test_extractor.TestExtractorModule.test_docstrings)\nEnsure docstring uniqueness ... ERROR\ntest_find (test_extractor.TestExtractorModule.test_find) ... ERROR\ntest_from_url (test_extractor.TestExtractorModule.test_from_url) ... ERROR\ntest_init (test_extractor.TestExtractorModule.test_init)\nTest for exceptions in Extractor.initialize() and .finalize() ... ERROR\ntest_init_ytdl (test_extractor.TestExtractorModule.test_init_ytdl) ... ERROR\ntest_names (test_extractor.TestExtractorModule.test_names)\nEnsure extractor classes are named CategorySubcategoryExtractor ... ERROR\ntest_unique_pattern_matches (test_extractor.TestExtractorModule.test_unique_pattern_matches) ... ERROR\ntest_wait_seconds (test_extractor.TestExtractorWait.test_wait_seconds) ... ERROR\ntest_wait_until (test_extractor.TestExtractorWait.test_wait_until) ... ERROR\ntest_wait_until_datetime (test_extractor.TestExtractorWait.test_wait_until_datetime) ... ERROR\ntest_oauth1 (test_extractor.TextExtractorOAuth.test_oauth1) ... ERROR\ntest_oauth2 (test_extractor.TextExtractorOAuth.test_oauth2) ... ERROR\ntest_oauth2_mastodon (test_extractor.TextExtractorOAuth.test_oauth2_mastodon) ... ERROR\ntest_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth.test_oauth2_mastodon_unknown) ... ERROR\n\n======================================================================\nERROR: setUpClass (test_downloader.TestHTTPDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 174, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n ^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\n ^^^^^^^^^^^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: setUpClass (test_downloader.TestTextDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 234, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n ^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\n ^^^^^^^^^^^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookie_login (test_cookies.TestCookieLogin.test_cookie_login)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 118, in test_cookie_login\n extr = _get_extractor(category)\n ^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies (test_cookies.TestCookieUtils.test_check_cookies)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 127, in test_check_cookies\n extr = _get_extractor(\"test\")\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_domain (test_cookies.TestCookieUtils.test_check_cookies_domain)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 149, in test_check_cookies_domain\n extr = _get_extractor(\"test\")\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_expires (test_cookies.TestCookieUtils.test_check_cookies_expires)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 171, in test_check_cookies_expires\n extr = _get_extractor(\"test\")\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_dict (test_cookies.TestCookiedict.test_dict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 87, in test_dict\n cookies = _get_extractor(\"test\").cookies\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_domain (test_cookies.TestCookiedict.test_domain)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 95, in test_domain\n extr = _get_extractor(category)\n ^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookiefile (test_cookies.TestCookiejar.test_cookiefile)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 49, in test_cookiefile\n cookies = _get_extractor(\"test\").cookies\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_cookiefile (test_cookies.TestCookiejar.test_invalid_cookiefile)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 59, in test_invalid_cookiefile\n self._test_warning(self.invalid_cookiefile, ValueError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_filename (test_cookies.TestCookiejar.test_invalid_filename)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 62, in test_invalid_filename\n self._test_warning(join(self.path.name, \"nothing\"), FileNotFoundError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_add (test_extractor.TestExtractorModule.test_add)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 71, in test_add\n self.assertIsNone(extractor.find(uri))\n ^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_add_module (test_extractor.TestExtractorModule.test_add_module)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 78, in test_add_module\n self.assertIsNone(extractor.find(uri))\n ^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_docstrings (test_extractor.TestExtractorModule.test_docstrings)\nEnsure docstring uniqueness\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 175, in test_docstrings\n for extr1 in extractor.extractors():\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n ^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_find (test_extractor.TestExtractorModule.test_find)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 59, in test_find\n result = extractor.find(uri)\n ^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_from_url (test_extractor.TestExtractorModule.test_from_url)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 88, in test_from_url\n cls = extractor.find(uri).__class__\n ^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init (test_extractor.TestExtractorModule.test_init)\nTest for exceptions in Extractor.initialize() and .finalize()\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 152, in test_init\n for cls in extractor.extractors():\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n ^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init_ytdl (test_extractor.TestExtractorModule.test_init_ytdl)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 164, in test_init_ytdl\n extr = extractor.find(\"ytdl:\")\n ^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_names (test_extractor.TestExtractorModule.test_names)\nEnsure extractor classes are named CategorySubcategoryExtractor\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 191, in test_names\n for extr in extractor.extractors():\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n ^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_unique_pattern_matches (test_extractor.TestExtractorModule.test_unique_pattern_matches)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 124, in test_unique_pattern_matches\n for extr2 in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_wait_seconds (test_extractor.TestExtractorWait.test_wait_seconds)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 209, in test_wait_seconds\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1443, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1416, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until (test_extractor.TestExtractorWait.test_wait_until)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 222, in test_wait_until\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1443, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1416, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until_datetime (test_extractor.TestExtractorWait.test_wait_until_datetime)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 238, in test_wait_until_datetime\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1443, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1416, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_oauth1 (test_extractor.TextExtractorOAuth.test_oauth1)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 268, in test_oauth1\n with patch.object(extr, \"_oauth1_authorization_flow\") as m:\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1443, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1416, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth1_authorization_flow'\n\n======================================================================\nERROR: test_oauth2 (test_extractor.TextExtractorOAuth.test_oauth2)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 277, in test_oauth2\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m:\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1443, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1416, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon (test_extractor.TextExtractorOAuth.test_oauth2_mastodon)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 285, in test_oauth2_mastodon\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1443, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1416, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth.test_oauth2_mastodon_unknown)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 295, in test_oauth2_mastodon_unknown\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1443, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/unittest/mock.py\", line 1416, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n----------------------------------------------------------------------\nRan 214 tests in 1.268s\n\nFAILED (errors=27, skipped=3)\nunable to import test_postprocessor\nmake: *** [Makefile:22: test] Error 1\n##[error]Process completed with exit code 2.\n"}, {"step_name": "build (3.12)/8_Run tests.txt", "log": "##[group]Run make test\n\u001b[36;1mmake test\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n pythonLocation: /opt/hostedtoolcache/Python/3.12.1/x64\n PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.12.1/x64/lib/pkgconfig\n Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.1/x64\n Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.1/x64\n Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.12.1/x64\n LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.12.1/x64/lib\n##[endgroup]\nscripts/run_tests.py\ntest_accumulate (test_config.TestConfig.test_accumulate) ... ok\ntest_apply (test_config.TestConfig.test_apply) ... ok\ntest_get (test_config.TestConfig.test_get) ... ok\ntest_interpolate (test_config.TestConfig.test_interpolate) ... ok\ntest_interpolate_common (test_config.TestConfig.test_interpolate_common) ... ok\ntest_load (test_config.TestConfig.test_load) ... ok\ntest_set (test_config.TestConfig.test_set) ... ok\ntest_setdefault (test_config.TestConfig.test_setdefault) ... ok\ntest_unset (test_config.TestConfig.test_unset) ... ok\ntest_default_config (test_config.TestConfigFiles.test_default_config) ... ok\ntest_example_config (test_config.TestConfigFiles.test_example_config) ... ok\ntest_cookiestxt_load (test_util.TestCookiesTxt.test_cookiestxt_load) ... ok\ntest_cookiestxt_store (test_util.TestCookiesTxt.test_cookiestxt_store) ... ok\ntest_code_to_language (test_util.TestISO639_1.test_code_to_language) ... ok\ntest_language_to_code (test_util.TestISO639_1.test_language_to_code) ... ok\ntest_advance (test_util.TestOther.test_advance) ... ok\ntest_bdecode (test_util.TestOther.test_bdecode) ... ok\ntest_bencode (test_util.TestOther.test_bencode) ... ok\ntest_bencode_bdecode (test_util.TestOther.test_bencode_bdecode) ... ok\ntest_build_duration_func (test_util.TestOther.test_build_duration_func) ... ok\ntest_combine_dict (test_util.TestOther.test_combine_dict) ... ok\ntest_compile_expression (test_util.TestOther.test_compile_expression) ... ok\ntest_contains (test_util.TestOther.test_contains) ... ok\ntest_custom_globals (test_util.TestOther.test_custom_globals) ... ok\ntest_datetime_to_timestamp (test_util.TestOther.test_datetime_to_timestamp) ... ok\ntest_datetime_to_timestamp_string (test_util.TestOther.test_datetime_to_timestamp_string) ... ok\ntest_enumerate_reversed (test_util.TestOther.test_enumerate_reversed) ... ok\ntest_extractor_filter (test_util.TestOther.test_extractor_filter) ... ok\ntest_filter_dict (test_util.TestOther.test_filter_dict) ... ok\ntest_format_value (test_util.TestOther.test_format_value) ... ok\ntest_generate_token (test_util.TestOther.test_generate_token) ... ok\ntest_identity (test_util.TestOther.test_identity) ... ok\ntest_import_file (test_util.TestOther.test_import_file) ... ok\ntest_md5 (test_util.TestOther.test_md5) ... ok\ntest_noop (test_util.TestOther.test_noop) ... ok\ntest_number_to_string (test_util.TestOther.test_number_to_string) ... ok\ntest_raises (test_util.TestOther.test_raises) ... ok\ntest_sha1 (test_util.TestOther.test_sha1) ... ok\ntest_to_string (test_util.TestOther.test_to_string) ... ok\ntest_transform_dict (test_util.TestOther.test_transform_dict) ... ok\ntest_unique (test_util.TestOther.test_unique) ... ok\ntest_unique_sequence (test_util.TestOther.test_unique_sequence) ... ok\ntest_universal_none (test_util.TestOther.test_universal_none) ... ok\ntest_build_predicate (test_util.TestPredicate.test_build_predicate) ... ok\ntest_filter_predicate (test_util.TestPredicate.test_filter_predicate) ... ok\ntest_range_predicate (test_util.TestPredicate.test_range_predicate) ... ok\ntest_unique_predicate (test_util.TestPredicate.test_unique_predicate) ... ok\ntest_parse_digit (test_util.TestRange.test_parse_digit) ... ok\ntest_parse_empty (test_util.TestRange.test_parse_empty) ... ok\ntest_parse_range (test_util.TestRange.test_parse_range) ... ok\ntest_parse_slice (test_util.TestRange.test_parse_slice) ... ok\ntest_access_token (test_oauth.TestOAuthSession.test_access_token) ... skipped ''\ntest_authenticated_call (test_oauth.TestOAuthSession.test_authenticated_call) ... skipped ''\ntest_concat (test_oauth.TestOAuthSession.test_concat) ... ok\ntest_dunder_call (test_oauth.TestOAuthSession.test_dunder_call) ... ok\ntest_generate_signature (test_oauth.TestOAuthSession.test_generate_signature) ... ok\ntest_nonce (test_oauth.TestOAuthSession.test_nonce) ... ok\ntest_quote (test_oauth.TestOAuthSession.test_quote) ... ok\ntest_request_token (test_oauth.TestOAuthSession.test_request_token) ... skipped ''\ntest_alternative (test_formatter.TestFormatter.test_alternative) ... ok\ntest_chain_special (test_formatter.TestFormatter.test_chain_special) ... ok\ntest_conversions (test_formatter.TestFormatter.test_conversions) ... ok\ntest_datetime (test_formatter.TestFormatter.test_datetime) ... ok\ntest_dict_access (test_formatter.TestFormatter.test_dict_access) ... ok\ntest_expression (test_formatter.TestFormatter.test_expression) ... ok\ntest_fmt_func (test_formatter.TestFormatter.test_fmt_func) ... ok\ntest_fstring (test_formatter.TestFormatter.test_fstring) ... ok\ntest_globals_env (test_formatter.TestFormatter.test_globals_env) ... ok\ntest_globals_now (test_formatter.TestFormatter.test_globals_now) ... ok\ntest_indexing (test_formatter.TestFormatter.test_indexing) ... ok\ntest_join (test_formatter.TestFormatter.test_join) ... ok\ntest_literals (test_formatter.TestFormatter.test_literals) ... ok\ntest_maxlen (test_formatter.TestFormatter.test_maxlen) ... ok\ntest_missing (test_formatter.TestFormatter.test_missing) ... ok\ntest_missing_custom_default (test_formatter.TestFormatter.test_missing_custom_default) ... ok\ntest_module (test_formatter.TestFormatter.test_module) ... ok\ntest_offset (test_formatter.TestFormatter.test_offset) ... ok\ntest_optional (test_formatter.TestFormatter.test_optional) ... ok\ntest_replace (test_formatter.TestFormatter.test_replace) ... ok\ntest_separator (test_formatter.TestFormatter.test_separator) ... ok\ntest_slice_bytes (test_formatter.TestFormatter.test_slice_bytes) ... ok\ntest_slice_str (test_formatter.TestFormatter.test_slice_str) ... ok\ntest_sort (test_formatter.TestFormatter.test_sort) ... ok\ntest_template (test_formatter.TestFormatter.test_template) ... ok\ntest_template_fstring (test_formatter.TestFormatter.test_template_fstring) ... ok\ntest_ensure_http_scheme (test_text.TestText.test_ensure_http_scheme) ... ok\ntest_ext_from_url (test_text.TestText.test_ext_from_url) ... ok\ntest_extr (test_text.TestText.test_extr) ... ok\ntest_extract (test_text.TestText.test_extract) ... ok\ntest_extract_all (test_text.TestText.test_extract_all) ... ok\ntest_extract_from (test_text.TestText.test_extract_from) ... ok\ntest_extract_iter (test_text.TestText.test_extract_iter) ... ok\ntest_filename_from_url (test_text.TestText.test_filename_from_url) ... ok\ntest_nameext_from_url (test_text.TestText.test_nameext_from_url) ... ok\ntest_parse_bytes (test_text.TestText.test_parse_bytes) ... ok\ntest_parse_datetime (test_text.TestText.test_parse_datetime) ... ok\ntest_parse_float (test_text.TestText.test_parse_float) ... ok\ntest_parse_int (test_text.TestText.test_parse_int) ... ok\ntest_parse_query (test_text.TestText.test_parse_query) ... ok\ntest_parse_timestamp (test_text.TestText.test_parse_timestamp) ... ok\ntest_parse_unicode_escapes (test_text.TestText.test_parse_unicode_escapes) ... ok\ntest_remove_html (test_text.TestText.test_remove_html) ... ok\ntest_rextract (test_text.TestText.test_rextract) ... ok\ntest_root_from_url (test_text.TestText.test_root_from_url) ... ok\ntest_slugify (test_text.TestText.test_slugify) ... ok\ntest_split_html (test_text.TestText.test_split_html) ... ok\ntest_cache (test_downloader.TestDownloaderModule.test_cache) ... ok\ntest_cache_http (test_downloader.TestDownloaderModule.test_cache_http) ... ok\ntest_cache_https (test_downloader.TestDownloaderModule.test_cache_https) ... ok\ntest_find (test_downloader.TestDownloaderModule.test_find) ... ok\nsetUpClass (test_downloader.TestHTTPDownloader) ... ERROR\nsetUpClass (test_downloader.TestTextDownloader) ... ERROR\ntest_shorten (test_output.TestShorten.test_shorten) ... ok\ntest_shorten_noop (test_output.TestShorten.test_shorten_noop) ... ok\ntest_shorten_separator (test_output.TestShorten.test_shorten_separator) ... ok\ntest_shorten_eaw (test_output.TestShortenEAW.test_shorten_eaw) ... ok\ntest_shorten_eaw_mix (test_output.TestShortenEAW.test_shorten_eaw_mix) ... ok\ntest_shorten_eaw_noop (test_output.TestShortenEAW.test_shorten_eaw_noop) ... ok\ntest_shorten_eaw_separator (test_output.TestShortenEAW.test_shorten_eaw_separator) ... ok\ntest_shorten_eaw_separator_mix_ (test_output.TestShortenEAW.test_shorten_eaw_separator_mix_) ... ok\ntest_shorten_eaw_separator_wide (test_output.TestShortenEAW.test_shorten_eaw_separator_wide) ... ok\ntest_shorten_eaw_wide (test_output.TestShortenEAW.test_shorten_eaw_wide) ... ok\ntest_cookie_login (test_cookies.TestCookieLogin.test_cookie_login) ... ERROR\ntest_check_cookies (test_cookies.TestCookieUtils.test_check_cookies) ... ERROR\ntest_check_cookies_domain (test_cookies.TestCookieUtils.test_check_cookies_domain) ... ERROR\ntest_check_cookies_expires (test_cookies.TestCookieUtils.test_check_cookies_expires) ... ERROR\ntest_dict (test_cookies.TestCookiedict.test_dict) ... ERROR\ntest_domain (test_cookies.TestCookiedict.test_domain) ... ERROR\ntest_cookiefile (test_cookies.TestCookiejar.test_cookiefile) ... ERROR\ntest_invalid_cookiefile (test_cookies.TestCookiejar.test_invalid_cookiefile) ... ERROR\ntest_invalid_filename (test_cookies.TestCookiejar.test_invalid_filename) ... ERROR\ntest_ascii (test_job.TestDataJob.test_ascii) ... ok\ntest_default (test_job.TestDataJob.test_default) ... ok\ntest_exception (test_job.TestDataJob.test_exception) ... ok\ntest_num_string (test_job.TestDataJob.test_num_string) ... ok\ntest_private (test_job.TestDataJob.test_private) ... ok\ntest_sleep (test_job.TestDataJob.test_sleep) ... ok\ntest_extractor_filter (test_job.TestDownloadJob.test_extractor_filter) ... ok\ntest_base_category (test_job.TestInfoJob.test_base_category) ... ok\ntest_custom (test_job.TestInfoJob.test_custom) ... ok\ntest_default (test_job.TestInfoJob.test_default) ... ok\ntest_default (test_job.TestKeywordJob.test_default) ... ok\ntest_child (test_job.TestUrlJob.test_child) ... ok\ntest_default (test_job.TestUrlJob.test_default) ... ok\ntest_fallback (test_job.TestUrlJob.test_fallback) ... ok\ntest_parent (test_job.TestUrlJob.test_parent) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments.test_authentication_options) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments.test_default_search) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments.test_embed) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments.test_extract_audio) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments.test_geo_bypass) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments.test_headers) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments.test_ignore_errors) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments.test_mark_watched) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments.test_metadata) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments.test_metadata_from_title) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments.test_network_options) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments.test_noop) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments.test_proxy) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments.test_recode_video) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments.test_retries) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments.test_subs) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments.test_subtitle_options) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments.test_thumbnail_options) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments.test_xattr) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments_YtDlp.test_authentication_options) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments_YtDlp.test_default_search) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments_YtDlp.test_embed) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments_YtDlp.test_extract_audio) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments_YtDlp.test_geo_bypass) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments_YtDlp.test_headers) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments_YtDlp.test_ignore_errors) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments_YtDlp.test_mark_watched) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments_YtDlp.test_metadata) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments_YtDlp.test_metadata_from_title) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments_YtDlp.test_network_options) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments_YtDlp.test_noop) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments_YtDlp.test_proxy) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments_YtDlp.test_recode_video) ... ok\ntest_remuxs_video (test_ytdl.Test_CommandlineArguments_YtDlp.test_remuxs_video) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments_YtDlp.test_retries) ... ok\ntest_retries_extractor (test_ytdl.Test_CommandlineArguments_YtDlp.test_retries_extractor) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments_YtDlp.test_subs) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments_YtDlp.test_subtitle_options) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments_YtDlp.test_thumbnail_options) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments_YtDlp.test_xattr) ... ok\ntest_database_read (test_cache.TestCache.test_database_read) ... ok\ntest_decorator (test_cache.TestCache.test_decorator) ... ok\ntest_expires_db (test_cache.TestCache.test_expires_db) ... ok\ntest_expires_mem (test_cache.TestCache.test_expires_mem) ... ok\ntest_invalidate_db (test_cache.TestCache.test_invalidate_db) ... ok\ntest_invalidate_mem (test_cache.TestCache.test_invalidate_mem) ... ok\ntest_invalidate_mem_simple (test_cache.TestCache.test_invalidate_mem_simple) ... ok\ntest_keyarg_db (test_cache.TestCache.test_keyarg_db) ... ok\ntest_keyarg_mem (test_cache.TestCache.test_keyarg_mem) ... ok\ntest_keyarg_mem_simple (test_cache.TestCache.test_keyarg_mem_simple) ... ok\ntest_update_db (test_cache.TestCache.test_update_db) ... ok\ntest_update_mem (test_cache.TestCache.test_update_mem) ... ok\ntest_update_mem_simple (test_cache.TestCache.test_update_mem_simple) ... ok\ntest_add (test_extractor.TestExtractorModule.test_add) ... ERROR\ntest_add_module (test_extractor.TestExtractorModule.test_add_module) ... ERROR\ntest_categories (test_extractor.TestExtractorModule.test_categories) ... ok\ntest_docstrings (test_extractor.TestExtractorModule.test_docstrings)\nEnsure docstring uniqueness ... ERROR\ntest_find (test_extractor.TestExtractorModule.test_find) ... ERROR\ntest_from_url (test_extractor.TestExtractorModule.test_from_url) ... ERROR\ntest_init (test_extractor.TestExtractorModule.test_init)\nTest for exceptions in Extractor.initialize() and .finalize() ... ERROR\ntest_init_ytdl (test_extractor.TestExtractorModule.test_init_ytdl) ... ERROR\ntest_names (test_extractor.TestExtractorModule.test_names)\nEnsure extractor classes are named CategorySubcategoryExtractor ... ERROR\ntest_unique_pattern_matches (test_extractor.TestExtractorModule.test_unique_pattern_matches) ... ERROR\ntest_wait_seconds (test_extractor.TestExtractorWait.test_wait_seconds) ... ERROR\ntest_wait_until (test_extractor.TestExtractorWait.test_wait_until) ... ERROR\ntest_wait_until_datetime (test_extractor.TestExtractorWait.test_wait_until_datetime) ... ERROR\ntest_oauth1 (test_extractor.TextExtractorOAuth.test_oauth1) ... ERROR\ntest_oauth2 (test_extractor.TextExtractorOAuth.test_oauth2) ... ERROR\ntest_oauth2_mastodon (test_extractor.TextExtractorOAuth.test_oauth2_mastodon) ... ERROR\ntest_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth.test_oauth2_mastodon_unknown) ... ERROR\n\n======================================================================\nERROR: setUpClass (test_downloader.TestHTTPDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 174, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n ^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\n ^^^^^^^^^^^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: setUpClass (test_downloader.TestTextDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 234, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n ^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\n ^^^^^^^^^^^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookie_login (test_cookies.TestCookieLogin.test_cookie_login)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 118, in test_cookie_login\n extr = _get_extractor(category)\n ^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies (test_cookies.TestCookieUtils.test_check_cookies)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 127, in test_check_cookies\n extr = _get_extractor(\"test\")\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_domain (test_cookies.TestCookieUtils.test_check_cookies_domain)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 149, in test_check_cookies_domain\n extr = _get_extractor(\"test\")\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_expires (test_cookies.TestCookieUtils.test_check_cookies_expires)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 171, in test_check_cookies_expires\n extr = _get_extractor(\"test\")\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_dict (test_cookies.TestCookiedict.test_dict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 87, in test_dict\n cookies = _get_extractor(\"test\").cookies\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_domain (test_cookies.TestCookiedict.test_domain)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 95, in test_domain\n extr = _get_extractor(category)\n ^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookiefile (test_cookies.TestCookiejar.test_cookiefile)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 49, in test_cookiefile\n cookies = _get_extractor(\"test\").cookies\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_cookiefile (test_cookies.TestCookiejar.test_invalid_cookiefile)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 59, in test_invalid_cookiefile\n self._test_warning(self.invalid_cookiefile, ValueError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_filename (test_cookies.TestCookiejar.test_invalid_filename)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 62, in test_invalid_filename\n self._test_warning(join(self.path.name, \"nothing\"), FileNotFoundError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\n ^^^^^^^^^^^^^^^\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_add (test_extractor.TestExtractorModule.test_add)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 71, in test_add\n self.assertIsNone(extractor.find(uri))\n ^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_add_module (test_extractor.TestExtractorModule.test_add_module)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 78, in test_add_module\n self.assertIsNone(extractor.find(uri))\n ^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_docstrings (test_extractor.TestExtractorModule.test_docstrings)\nEnsure docstring uniqueness\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 175, in test_docstrings\n for extr1 in extractor.extractors():\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n ^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_find (test_extractor.TestExtractorModule.test_find)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 59, in test_find\n result = extractor.find(uri)\n ^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_from_url (test_extractor.TestExtractorModule.test_from_url)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 88, in test_from_url\n cls = extractor.find(uri).__class__\n ^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init (test_extractor.TestExtractorModule.test_init)\nTest for exceptions in Extractor.initialize() and .finalize()\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 152, in test_init\n for cls in extractor.extractors():\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n ^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init_ytdl (test_extractor.TestExtractorModule.test_init_ytdl)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 164, in test_init_ytdl\n extr = extractor.find(\"ytdl:\")\n ^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_names (test_extractor.TestExtractorModule.test_names)\nEnsure extractor classes are named CategorySubcategoryExtractor\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 191, in test_names\n for extr in extractor.extractors():\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n ^^^^^^^\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_unique_pattern_matches (test_extractor.TestExtractorModule.test_unique_pattern_matches)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 124, in test_unique_pattern_matches\n for extr2 in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_wait_seconds (test_extractor.TestExtractorWait.test_wait_seconds)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 209, in test_wait_seconds\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1455, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1428, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until (test_extractor.TestExtractorWait.test_wait_until)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 222, in test_wait_until\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1455, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1428, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until_datetime (test_extractor.TestExtractorWait.test_wait_until_datetime)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 238, in test_wait_until_datetime\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1455, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1428, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_oauth1 (test_extractor.TextExtractorOAuth.test_oauth1)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 268, in test_oauth1\n with patch.object(extr, \"_oauth1_authorization_flow\") as m:\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1455, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1428, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth1_authorization_flow'\n\n======================================================================\nERROR: test_oauth2 (test_extractor.TextExtractorOAuth.test_oauth2)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 277, in test_oauth2\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m:\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1455, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1428, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon (test_extractor.TextExtractorOAuth.test_oauth2_mastodon)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 285, in test_oauth2_mastodon\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1455, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1428, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth.test_oauth2_mastodon_unknown)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 295, in test_oauth2_mastodon_unknown\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1455, in __enter__\n original, local = self.get_original()\n ^^^^^^^^^^^^^^^^^^^\n File \"/opt/hostedtoolcache/Python/3.12.1/x64/lib/python3.12/unittest/mock.py\", line 1428, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n----------------------------------------------------------------------\nRan 214 tests in 1.539s\n\nFAILED (errors=27, skipped=3)\nunable to import test_postprocessor\nmake: *** [Makefile:22: test] Error 1\n##[error]Process completed with exit code 2.\n"}, {"step_name": "build (pypy3.9)/8_Run tests.txt", "log": "##[group]Run make test\n\u001b[36;1mmake test\u001b[0m\nshell: /usr/bin/bash -e {0}\nenv:\n pythonLocation: /opt/hostedtoolcache/PyPy/3.9.18/x64\n Python_ROOT_DIR: /opt/hostedtoolcache/PyPy/3.9.18/x64\n Python2_ROOT_DIR: /opt/hostedtoolcache/PyPy/3.9.18/x64\n Python3_ROOT_DIR: /opt/hostedtoolcache/PyPy/3.9.18/x64\n PKG_CONFIG_PATH: /opt/hostedtoolcache/PyPy/3.9.18/x64/bin/lib/pkgconfig\n##[endgroup]\nscripts/run_tests.py\ntest_accumulate (test_config.TestConfig) ... ok\ntest_apply (test_config.TestConfig) ... ok\ntest_get (test_config.TestConfig) ... ok\ntest_interpolate (test_config.TestConfig) ... ok\ntest_interpolate_common (test_config.TestConfig) ... ok\ntest_load (test_config.TestConfig) ... ok\ntest_set (test_config.TestConfig) ... ok\ntest_setdefault (test_config.TestConfig) ... ok\ntest_unset (test_config.TestConfig) ... ok\ntest_default_config (test_config.TestConfigFiles) ... ok\ntest_example_config (test_config.TestConfigFiles) ... ok\ntest_cookiestxt_load (test_util.TestCookiesTxt) ... ok\ntest_cookiestxt_store (test_util.TestCookiesTxt) ... ok\ntest_code_to_language (test_util.TestISO639_1) ... ok\ntest_language_to_code (test_util.TestISO639_1) ... ok\ntest_advance (test_util.TestOther) ... ok\ntest_bdecode (test_util.TestOther) ... ok\ntest_bencode (test_util.TestOther) ... ok\ntest_bencode_bdecode (test_util.TestOther) ... ok\ntest_build_duration_func (test_util.TestOther) ... ok\ntest_combine_dict (test_util.TestOther) ... ok\ntest_compile_expression (test_util.TestOther) ... ok\ntest_contains (test_util.TestOther) ... ok\ntest_custom_globals (test_util.TestOther) ... ok\ntest_datetime_to_timestamp (test_util.TestOther) ... ok\ntest_datetime_to_timestamp_string (test_util.TestOther) ... ok\ntest_enumerate_reversed (test_util.TestOther) ... ok\ntest_extractor_filter (test_util.TestOther) ... ok\ntest_filter_dict (test_util.TestOther) ... ok\ntest_format_value (test_util.TestOther) ... ok\ntest_generate_token (test_util.TestOther) ... ok\ntest_identity (test_util.TestOther) ... ok\ntest_import_file (test_util.TestOther) ... ok\ntest_md5 (test_util.TestOther) ... ok\ntest_noop (test_util.TestOther) ... ok\ntest_number_to_string (test_util.TestOther) ... ok\ntest_raises (test_util.TestOther) ... ok\ntest_sha1 (test_util.TestOther) ... ok\ntest_to_string (test_util.TestOther) ... ok\ntest_transform_dict (test_util.TestOther) ... ok\ntest_unique (test_util.TestOther) ... ok\ntest_unique_sequence (test_util.TestOther) ... ok\ntest_universal_none (test_util.TestOther) ... ok\ntest_build_predicate (test_util.TestPredicate) ... ok\ntest_filter_predicate (test_util.TestPredicate) ... ok\ntest_range_predicate (test_util.TestPredicate) ... ok\ntest_unique_predicate (test_util.TestPredicate) ... ok\ntest_parse_digit (test_util.TestRange) ... ok\ntest_parse_empty (test_util.TestRange) ... ok\ntest_parse_range (test_util.TestRange) ... ok\ntest_parse_slice (test_util.TestRange) ... ok\ntest_access_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_authenticated_call (test_oauth.TestOAuthSession) ... skipped ''\ntest_concat (test_oauth.TestOAuthSession) ... ok\ntest_dunder_call (test_oauth.TestOAuthSession) ... ok\ntest_generate_signature (test_oauth.TestOAuthSession) ... ok\ntest_nonce (test_oauth.TestOAuthSession) ... ok\ntest_quote (test_oauth.TestOAuthSession) ... ok\ntest_request_token (test_oauth.TestOAuthSession) ... skipped ''\ntest_alternative (test_formatter.TestFormatter) ... ok\ntest_chain_special (test_formatter.TestFormatter) ... ok\ntest_conversions (test_formatter.TestFormatter) ... ok\ntest_datetime (test_formatter.TestFormatter) ... ok\ntest_dict_access (test_formatter.TestFormatter) ... ok\ntest_expression (test_formatter.TestFormatter) ... ok\ntest_fmt_func (test_formatter.TestFormatter) ... ok\ntest_fstring (test_formatter.TestFormatter) ... ok\ntest_globals_env (test_formatter.TestFormatter) ... ok\ntest_globals_now (test_formatter.TestFormatter) ... ok\ntest_indexing (test_formatter.TestFormatter) ... ok\ntest_join (test_formatter.TestFormatter) ... ok\ntest_literals (test_formatter.TestFormatter) ... ok\ntest_maxlen (test_formatter.TestFormatter) ... ok\ntest_missing (test_formatter.TestFormatter) ... ok\ntest_missing_custom_default (test_formatter.TestFormatter) ... ok\ntest_module (test_formatter.TestFormatter) ... ok\ntest_offset (test_formatter.TestFormatter) ... ok\ntest_optional (test_formatter.TestFormatter) ... ok\ntest_replace (test_formatter.TestFormatter) ... ok\ntest_separator (test_formatter.TestFormatter) ... ok\ntest_slice_bytes (test_formatter.TestFormatter) ... ok\ntest_slice_str (test_formatter.TestFormatter) ... ok\ntest_sort (test_formatter.TestFormatter) ... ok\ntest_template (test_formatter.TestFormatter) ... ok\ntest_template_fstring (test_formatter.TestFormatter) ... ok\ntest_ensure_http_scheme (test_text.TestText) ... ok\ntest_ext_from_url (test_text.TestText) ... ok\ntest_extr (test_text.TestText) ... ok\ntest_extract (test_text.TestText) ... ok\ntest_extract_all (test_text.TestText) ... ok\ntest_extract_from (test_text.TestText) ... ok\ntest_extract_iter (test_text.TestText) ... ok\ntest_filename_from_url (test_text.TestText) ... ok\ntest_nameext_from_url (test_text.TestText) ... ok\ntest_parse_bytes (test_text.TestText) ... ok\ntest_parse_datetime (test_text.TestText) ... ok\ntest_parse_float (test_text.TestText) ... ok\ntest_parse_int (test_text.TestText) ... ok\ntest_parse_query (test_text.TestText) ... ok\ntest_parse_timestamp (test_text.TestText) ... ok\ntest_parse_unicode_escapes (test_text.TestText) ... ok\ntest_remove_html (test_text.TestText) ... ok\ntest_rextract (test_text.TestText) ... ok\ntest_root_from_url (test_text.TestText) ... ok\ntest_slugify (test_text.TestText) ... ok\ntest_split_html (test_text.TestText) ... ok\ntest_cache (test_downloader.TestDownloaderModule) ... ok\ntest_cache_http (test_downloader.TestDownloaderModule) ... ok\ntest_cache_https (test_downloader.TestDownloaderModule) ... ok\ntest_find (test_downloader.TestDownloaderModule) ... ok\nERROR\nERROR\ntest_shorten (test_output.TestShorten) ... ok\ntest_shorten_noop (test_output.TestShorten) ... ok\ntest_shorten_separator (test_output.TestShorten) ... ok\ntest_shorten_eaw (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_mix (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_noop (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_mix_ (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_separator_wide (test_output.TestShortenEAW) ... ok\ntest_shorten_eaw_wide (test_output.TestShortenEAW) ... ok\ntest_cookie_login (test_cookies.TestCookieLogin) ... ERROR\ntest_check_cookies (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_domain (test_cookies.TestCookieUtils) ... ERROR\ntest_check_cookies_expires (test_cookies.TestCookieUtils) ... ERROR\ntest_dict (test_cookies.TestCookiedict) ... ERROR\ntest_domain (test_cookies.TestCookiedict) ... ERROR\ntest_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_cookiefile (test_cookies.TestCookiejar) ... ERROR\ntest_invalid_filename (test_cookies.TestCookiejar) ... ERROR\ntest_ascii (test_job.TestDataJob) ... ok\ntest_default (test_job.TestDataJob) ... ok\ntest_exception (test_job.TestDataJob) ... ok\ntest_num_string (test_job.TestDataJob) ... ok\ntest_private (test_job.TestDataJob) ... ok\ntest_sleep (test_job.TestDataJob) ... ok\ntest_extractor_filter (test_job.TestDownloadJob) ... ok\ntest_base_category (test_job.TestInfoJob) ... ok\ntest_custom (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestInfoJob) ... ok\ntest_default (test_job.TestKeywordJob) ... ok\ntest_child (test_job.TestUrlJob) ... ok\ntest_default (test_job.TestUrlJob) ... ok\ntest_fallback (test_job.TestUrlJob) ... ok\ntest_parent (test_job.TestUrlJob) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments) ... ok\ntest_authentication_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_default_search (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_embed (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_extract_audio (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_geo_bypass (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_headers (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_ignore_errors (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_mark_watched (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_metadata_from_title (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_network_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_noop (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_proxy (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_recode_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_remuxs_video (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_retries_extractor (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subs (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_subtitle_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_thumbnail_options (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_xattr (test_ytdl.Test_CommandlineArguments_YtDlp) ... ok\ntest_database_read (test_cache.TestCache) ... ok\ntest_decorator (test_cache.TestCache) ... ok\ntest_expires_db (test_cache.TestCache) ... ok\ntest_expires_mem (test_cache.TestCache) ... ok\ntest_invalidate_db (test_cache.TestCache) ... ok\ntest_invalidate_mem (test_cache.TestCache) ... ok\ntest_invalidate_mem_simple (test_cache.TestCache) ... ok\ntest_keyarg_db (test_cache.TestCache) ... ok\ntest_keyarg_mem (test_cache.TestCache) ... ok\ntest_keyarg_mem_simple (test_cache.TestCache) ... ok\ntest_update_db (test_cache.TestCache) ... ok\ntest_update_mem (test_cache.TestCache) ... ok\ntest_update_mem_simple (test_cache.TestCache) ... ok\ntest_add (test_extractor.TestExtractorModule) ... ERROR\ntest_add_module (test_extractor.TestExtractorModule) ... ERROR\ntest_categories (test_extractor.TestExtractorModule) ... ok\ntest_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness ... ERROR\ntest_find (test_extractor.TestExtractorModule) ... ERROR\ntest_from_url (test_extractor.TestExtractorModule) ... ERROR\ntest_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize() ... ERROR\ntest_init_ytdl (test_extractor.TestExtractorModule) ... ERROR\ntest_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor ... ERROR\ntest_unique_pattern_matches (test_extractor.TestExtractorModule) ... ERROR\ntest_wait_seconds (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until (test_extractor.TestExtractorWait) ... ERROR\ntest_wait_until_datetime (test_extractor.TestExtractorWait) ... ERROR\ntest_oauth1 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2 (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon (test_extractor.TextExtractorOAuth) ... ERROR\ntest_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth) ... ERROR\n\n======================================================================\nERROR: setUpClass (test_downloader.TestHTTPDownloader)\n----------------------------------------------------------------------\nunable to import test_postprocessor\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 174, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: setUpClass (test_downloader.TestTextDownloader)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 234, in setUpClass\n TestDownloaderBase.setUpClass()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 113, in setUpClass\n cls.job = FakeJob()\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_downloader.py\", line 37, in __init__\n self.extractor.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookie_login (test_cookies.TestCookieLogin)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 118, in test_cookie_login\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 127, in test_check_cookies\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_domain (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 149, in test_check_cookies_domain\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_check_cookies_expires (test_cookies.TestCookieUtils)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 171, in test_check_cookies_expires\n extr = _get_extractor(\"test\")\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_dict (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 87, in test_dict\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_domain (test_cookies.TestCookiedict)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 95, in test_domain\n extr = _get_extractor(category)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 49, in test_cookiefile\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_cookiefile (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 59, in test_invalid_cookiefile\n self._test_warning(self.invalid_cookiefile, ValueError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_invalid_filename (test_cookies.TestCookiejar)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 62, in test_invalid_filename\n self._test_warning(join(self.path.name, \"nothing\"), FileNotFoundError)\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 69, in _test_warning\n cookies = _get_extractor(\"test\").cookies\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_cookies.py\", line 206, in _get_extractor\n extr.initialize()\nAttributeError: 'NoneType' object has no attribute 'initialize'\n\n======================================================================\nERROR: test_add (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 71, in test_add\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_add_module (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 78, in test_add_module\n self.assertIsNone(extractor.find(uri))\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_docstrings (test_extractor.TestExtractorModule)\nEnsure docstring uniqueness\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 175, in test_docstrings\n for extr1 in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_find (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 59, in test_find\n result = extractor.find(uri)\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_from_url (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 88, in test_from_url\n cls = extractor.find(uri).__class__\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init (test_extractor.TestExtractorModule)\nTest for exceptions in Extractor.initialize() and .finalize()\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 152, in test_init\n for cls in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_init_ytdl (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 164, in test_init_ytdl\n extr = extractor.find(\"ytdl:\")\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 205, in find\n for cls in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_names (test_extractor.TestExtractorModule)\nEnsure extractor classes are named CategorySubcategoryExtractor\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 191, in test_names\n for extr in extractor.extractors():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 230, in extractors\n return sorted(\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_unique_pattern_matches (test_extractor.TestExtractorModule)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 124, in test_unique_pattern_matches\n for extr2 in _list_classes():\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 244, in _list_classes\n for module in _module_iter:\n File \"/home/runner/work/gallery-dl/gallery-dl/gallery_dl/extractor/__init__.py\", line 253, in _modules_internal\n yield __import__(module_name, globals_, None, (), 1)\nModuleNotFoundError: No module named 'gallery_dl.extractor.hbrowse'\n\n======================================================================\nERROR: test_wait_seconds (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 209, in test_wait_seconds\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 222, in test_wait_until\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_wait_until_datetime (test_extractor.TestExtractorWait)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 238, in test_wait_until_datetime\n with patch(\"time.sleep\") as sleep, patch.object(extr, \"log\") as log:\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute 'log'\n\n======================================================================\nERROR: test_oauth1 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 268, in test_oauth1\n with patch.object(extr, \"_oauth1_authorization_flow\") as m:\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth1_authorization_flow'\n\n======================================================================\nERROR: test_oauth2 (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 277, in test_oauth2\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m:\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 285, in test_oauth2_mastodon\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n======================================================================\nERROR: test_oauth2_mastodon_unknown (test_extractor.TextExtractorOAuth)\n----------------------------------------------------------------------\nTraceback (most recent call last):\n File \"/home/runner/work/gallery-dl/gallery-dl/test/test_extractor.py\", line 295, in test_oauth2_mastodon_unknown\n with patch.object(extr, \"_oauth2_authorization_code_grant\") as m, \\\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1404, in __enter__\n original, local = self.get_original()\n File \"/opt/hostedtoolcache/PyPy/3.9.18/x64/lib/pypy3.9/unittest/mock.py\", line 1377, in get_original\n raise AttributeError(\nAttributeError: None does not have the attribute '_oauth2_authorization_code_grant'\n\n----------------------------------------------------------------------\nRan 214 tests in 3.359s\n\nFAILED (errors=27, skipped=3)\nmake: *** [Makefile:22: test] Error 1\n##[error]Process completed with exit code 2.\n"}], "diff": "diff --git a/gallery_dl/extractor/__init__.py b/gallery_dl/extractor/__init__.py\nindex 86308917..d6247362 100644\n--- a/gallery_dl/extractor/__init__.py\n+++ b/gallery_dl/extractor/__init__.py\n@@ -55,7 +55,6 @@ modules = [\n \"gelbooru_v02\",\n \"gofile\",\n \"hatenablog\",\n- \"hbrowse\",\n \"hentai2read\",\n \"hentaicosplays\",\n \"hentaifoundry\",\n", "difficulty": 1, "changed_files": ["gallery_dl/extractor/__init__.py"], "commit_link": "https://github.com/mikf/gallery-dl/tree/0d367ce1b98292d543d5fe48c60eab48bdb0056b"} \ No newline at end of file