Skip to content

Conversation

@snejus
Copy link
Member

@snejus snejus commented Oct 25, 2025

Fixes: #6121

This PR introduces a centralized deprecation system and adjusts musicbrainz plugin loading to properly handle the deprecated musicbrainz.enabled configuration option.

MusicBrainz

  • Added deprecation warnings for the musicbrainz.enabled configuration option:
    • When set to true, warns users to explicitly add musicbrainz to their plugins configuration and adds it if not already present
    • When set to false, warns users and adds the plugin to disabled_plugins (list
      received by the --disable-plugins flag)

Deprecations

  • Created new beets/util/deprecation.py module with standardized deprecation helpers:

    • deprecate_for_user() - logs warnings visible to end users
    • deprecate_for_maintainers() - emits DeprecationWarning for developers
    • deprecate_imports() - handles deprecated module imports with automatic version calculation
    • _format_message() - generates consistent deprecation messages that auto-calculate next major version
  • Migrated all deprecation handling to use the new centralized functions:

    • Replaced inline warnings.warn() calls throughout codebase
    • Updated deprecate_imports() signature to remove explicit version parameter
    • Converted user-facing deprecation warnings in plugins to use logger-based deprecate_for_user()

Copilot AI review requested due to automatic review settings October 25, 2025 13:33
@snejus snejus requested a review from a team as a code owner October 25, 2025 13:33
@github-actions
Copy link

Thank you for the PR! The changelog has not been updated, so here is a friendly reminder to check if you need to add an entry.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR centralizes deprecation handling in beets by introducing a new beets/util/deprecation.py module with standardized helper functions, and updates the MusicBrainz plugin loading behavior to always load unless explicitly disabled.

Key Changes:

  • Created centralized deprecation system with deprecate_for_user(), deprecate_for_maintainers(), and deprecate_imports() functions
  • Modified MusicBrainz plugin to auto-load when not in plugins list and not disabled, with deprecation warnings
  • Migrated all deprecation warnings throughout codebase to use new centralized functions

Reviewed Changes

Copilot reviewed 10 out of 10 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
beets/util/deprecation.py New module providing centralized deprecation helper functions with automatic version calculation
beets/util/init.py Removed old deprecate_imports() function migrated to new deprecation module
beetsplug/musicbrainz.py Updated to use new deprecate_for_user() function for searchlimit option warning
beets/ui/init.py Replaced inline warning with deprecate_for_maintainers() call in decargs function
beets/plugins.py Updated MusicBrainz auto-loading logic and migrated deprecation warnings to new functions
beets/mediafile.py Replaced inline warning with deprecate_for_maintainers() call
beets/library/init.py Updated import and removed version parameter from deprecate_imports() call
beets/autotag/init.py Migrated deprecation warnings to new centralized functions
beets/init.py Updated import and simplified deprecate_imports() call
beets/config_default.yaml Changed default plugins list from [musicbrainz] to [] and added disabled_plugins option

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copy link
Contributor

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey there - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@codecov
Copy link

codecov bot commented Oct 25, 2025

❌ 83 Tests Failed:

Tests completed Failed Passed Skipped
83 83 0 1
View the top 3 failed test(s) by shortest run time
test/autotag/test_distance.py::test.autotag.test_distance
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\autotag\test_distance.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\autotag\test_distance.py#x1B[0m:15: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m ConfigMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_acousticbrainz.py::test.plugins.test_acousticbrainz
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_acousticbrainz.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_acousticbrainz.py#x1B[0m:21: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96m_common#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m RSRC#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_advancedrewrite.py::test.plugins.test_advancedrewrite
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_advancedrewrite.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_advancedrewrite.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_albumtypes.py::test.plugins.test_albumtypes
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_albumtypes.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_albumtypes.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_art.py::test.plugins.test_art
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_art.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_art.py#x1B[0m:32: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_aura.py::test.plugins.test_aura
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_aura.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_aura.py#x1B[0m:9: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m TestHelper#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_autobpm.py::test.plugins.test_autobpm
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_autobpm.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_autobpm.py#x1B[0m:6: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m ImportHelper, PluginMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_bareasc.py::test.plugins.test_bareasc
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_bareasc.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_bareasc.py#x1B[0m:7: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase, capture_stdout#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_beatport.py::test.plugins.test_beatport
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_beatport.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_beatport.py#x1B[0m:20: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_bpd.py::test.plugins.test_bpd
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_bpd.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_bpd.py#x1B[0m:31: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_bucket.py::test.plugins.test_bucket
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_bucket.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_bucket.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m BeetsTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_convert.py::test.plugins.test_convert
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_convert.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_convert.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_discogs.py::test.plugins.test_discogs
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_discogs.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_discogs.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96m_common#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m Bag#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_edit.py::test.plugins.test_edit
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_edit.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_edit.py#x1B[0m:20: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_embedart.py::test.plugins.test_embedart
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_embedart.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_embedart.py#x1B[0m:27: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_embyupdate.py::test.plugins.test_embyupdate
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_embyupdate.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_embyupdate.py#x1B[0m:3: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_export.py::test.plugins.test_export
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_export.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_export.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_fetchart.py::test.plugins.test_fetchart
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_fetchart.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_fetchart.py#x1B[0m:21: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_filefilter.py::test.plugins.test_filefilter
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_filefilter.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_filefilter.py#x1B[0m:17: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m ImportTestCase, PluginMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_ftintitle.py::test.plugins.test_ftintitle
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_ftintitle.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_ftintitle.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_hook.py::test.plugins.test_hook
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_hook.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_hook.py#x1B[0m:25: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase, capture_log#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_importadded.py::test.plugins.test_importadded
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_importadded.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_importadded.py#x1B[0m:23: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m AutotagImportTestCase, PluginMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_importfeeds.py::test.plugins.test_importfeeds
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_importfeeds.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_importfeeds.py#x1B[0m:5: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_importsource.py::test.plugins.test_importsource
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_importsource.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_importsource.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m AutotagImportTestCase, PluginMixin, control_stdin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_info.py::test.plugins.test_info
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_info.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_info.py#x1B[0m:18: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_inline.py::test.plugins.test_inline
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_inline.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_inline.py#x1B[0m:16: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_ipfs.py::test.plugins.test_ipfs
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_ipfs.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_ipfs.py#x1B[0m:18: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_keyfinder.py::test.plugins.test_keyfinder
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_keyfinder.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_keyfinder.py#x1B[0m:20: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m AsIsImporterMixin, ImportTestCase, PluginMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_lastgenre.py::test.plugins.test_lastgenre
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_lastgenre.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_lastgenre.py#x1B[0m:21: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_limit.py::test.plugins.test_limit
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_limit.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_limit.py#x1B[0m:16: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_lyrics.py::test.plugins.test_lyrics
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_lyrics.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_lyrics.py#x1B[0m:26: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginMixin, TestHelper#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_mbpseudo.py::test.plugins.test_mbpseudo
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_mbpseudo.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_mbpseudo.py#x1B[0m:11: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_mbsubmit.py::test.plugins.test_mbsubmit
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_mbsubmit.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_mbsubmit.py#x1B[0m:16: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m (#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_mbsync.py::test.plugins.test_mbsync
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_mbsync.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_mbsync.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase, capture_log#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_mpdstats.py::test.plugins.test_mpdstats
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_mpdstats.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_mpdstats.py#x1B[0m:20: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_musicbrainz.py::test.plugins.test_musicbrainz
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_musicbrainz.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_musicbrainz.py#x1B[0m:24: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m BeetsTestCase, PluginMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_parentwork.py::test.plugins.test_parentwork
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_parentwork.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_parentwork.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_permissions.py::test.plugins.test_permissions
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_permissions.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_permissions.py#x1B[0m:7: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96m_common#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m touch#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_play.py::test.plugins.test_play
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_play.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_play.py#x1B[0m:24: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m CleanupModulesMixin, PluginTestCase, control_stdin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_playlist.py::test.plugins.test_playlist
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_playlist.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_playlist.py#x1B[0m:20: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_plexupdate.py::test.plugins.test_plexupdate
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_plexupdate.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_plexupdate.py#x1B[0m:3: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_plugin_mediafield.py::test.plugins.test_plugin_mediafield
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_plugin_mediafield.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_plugin_mediafield.py#x1B[0m:25: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_random.py::test.plugins.test_random
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_random.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_random.py#x1B[0m:24: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m TestHelper#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_replace.py::test.plugins.test_replace
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_replace.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_replace.py#x1B[0m:8: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_replaygain.py::test.plugins.test_replaygain
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_replaygain.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_replaygain.py#x1B[0m:23: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m (#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_scrub.py::test.plugins.test_scrub
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_scrub.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_scrub.py#x1B[0m:5: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m AsIsImporterMixin, ImportTestCase, PluginMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_smartplaylist.py::test.plugins.test_smartplaylist
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_smartplaylist.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_smartplaylist.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m BeetsTestCase, PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_spotify.py::test.plugins.test_spotify
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_spotify.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_spotify.py#x1B[0m:9: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_substitute.py::test.plugins.test_substitute
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_substitute.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_substitute.py#x1B[0m:17: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_thumbnails.py::test.plugins.test_thumbnails
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_thumbnails.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_thumbnails.py#x1B[0m:23: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m BeetsTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_titlecase.py::test.plugins.test_titlecase
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_titlecase.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_titlecase.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_types_plugin.py::test.plugins.test_types_plugin
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_types_plugin.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_types_plugin.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_web.py::test.plugins.test_web
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_web.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_web.py#x1B[0m:11: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/test_zero.py::test.plugins.test_zero
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\test_zero.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\test_zero.py#x1B[0m:6: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m PluginTestCase, control_stdin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/plugins/utils/test_vfs.py::test.plugins.utils.test_vfs
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\plugins\utils\test_vfs.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\plugins\utils\test_vfs.py#x1B[0m:17: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_art_resize.py::test.test_art_resize
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_art_resize.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_art_resize.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_autotag.py::test.test_autotag
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_autotag.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_autotag.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m BeetsTestCase, ConfigMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_datequery.py::test.test_datequery
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_datequery.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_datequery.py#x1B[0m:29: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m ItemInDBTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_dbcore.py::test.test_dbcore
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_dbcore.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_dbcore.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_files.py::test.test_files
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_files.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_files.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_importer.py::test.test_importer
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_importer.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_importer.py#x1B[0m:41: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_library.py::test.test_library
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_library.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_library.py#x1B[0m:34: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_logging.py::test.test_logging
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_logging.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_logging.py#x1B[0m:13: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common, helper#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_m3ufile.py::test.test_m3ufile
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_m3ufile.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_m3ufile.py#x1B[0m:24: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96m_common#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m RSRC#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_metasync.py::test.test_metasync
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_metasync.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_metasync.py#x1B[0m:22: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_plugins.py::test.test_plugins
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_plugins.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_plugins.py#x1B[0m:36: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m helper#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_query.py::test.test_query
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_query.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_query.py#x1B[0m:43: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_sort.py::test.test_sort
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_sort.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_sort.py#x1B[0m:23: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/test_util.py::test.test_util
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\test_util.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\test_util.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_completion.py::test.ui.commands.test_completion
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_completion.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_completion.py#x1B[0m:7: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_config.py::test.ui.commands.test_config
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_config.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_config.py#x1B[0m:8: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m BeetsTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_fields.py::test.ui.commands.test_fields
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_fields.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_fields.py#x1B[0m:2: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m IOMixin, ItemInDBTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_import.py::test.ui.commands.test_import
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_import.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_import.py#x1B[0m:10: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_list.py::test.ui.commands.test_list
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_list.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_list.py#x1B[0m:1: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_modify.py::test.ui.commands.test_modify
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_modify.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_modify.py#x1B[0m:5: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m BeetsTestCase, control_stdin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_move.py::test.ui.commands.test_move
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_move.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_move.py#x1B[0m:4: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m BeetsTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_remove.py::test.ui.commands.test_remove
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_remove.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_remove.py#x1B[0m:4: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m BeetsTestCase, IOMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_update.py::test.ui.commands.test_update
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_update.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_update.py#x1B[0m:6: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_utils.py::test.ui.commands.test_utils
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_utils.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_utils.py#x1B[0m:7: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/commands/test_write.py::test.ui.commands.test_write
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\commands\test_write.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\commands\test_write.py#x1B[0m:1: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m BeetsTestCase#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/test_ui.py::test.ui.test_ui
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\test_ui.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\test_ui.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/test_ui_importer.py::test.ui.test_ui_importer
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\test_ui_importer.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\test_ui_importer.py#x1B[0m:21: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mhelper#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m TerminalImportMixin#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\helper.py#x1B[0m:56: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m
test/ui/test_ui_init.py::test.ui.test_ui_init
Stack Traces | 0s run time
#x1B[31mImportError while importing test module 'D:\a\beets\beets\test\ui\test_ui_init.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
#x1B[1m#x1B[31mC:\hostedtoolcache\windows\Python\3.13.9\x64\Lib\importlib\__init__.py#x1B[0m:88: in import_module
    #x1B[0m#x1B[94mreturn#x1B[39;49;00m _bootstrap._gcd_import(name[level:], package, level)#x1B[90m#x1B[39;49;00m
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mtest\ui\test_ui_init.py#x1B[0m:24: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mtest#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m _common#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\test\_common.py#x1B[0m:28: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mui#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m commands#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mbeets\ui\commands\__init__.py#x1B[0m:19: in <module>
    #x1B[0m#x1B[94mfrom#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[04m#x1B[96mbeets#x1B[39;49;00m#x1B[04m#x1B[96m.#x1B[39;49;00m#x1B[04m#x1B[96mutil#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[94mimport#x1B[39;49;00m deprecate_imports#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE   ImportError: cannot import name 'deprecate_imports' from 'beets.util' (D:\a\beets\beets\beets\util\__init__.py)#x1B[0m#x1B[0m

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

@henry-oberholtzer
Copy link
Member

I like the additional deprecation warnings, but adding a disabled plugin list doesn't feel right to me when a plugin should be considered disabled by merit of not being on the list of plugins to begin with.

My thoughts on a solution to the Musicbrainz problem:

Throw an error, and ask the user if they'd like to use musicbrainz.

I'm not sure how possible it is for us to modify the user's config file, but if possible we could just add it to the list of enabled plugins and then the warning shouldn't appear again, unless the user intentionally switches for just discogs, or spotify, or similar.

@snejus snejus changed the title Always enable mb Add deprecation warning for musicbrainz.enabled but use it to load the plugin, centralise deprecations handling Oct 26, 2025
@snejus
Copy link
Member Author

snejus commented Oct 26, 2025

I like the additional deprecation warnings, but adding a disabled plugin list doesn't feel right to me when a plugin should be considered disabled by merit of not being on the list of plugins to begin with.

Agree with you. I have now updated the logic and added a test to show the behaviour (otherwise there's too much to wrap one's head around!)

@snejus snejus force-pushed the always-enable-mb branch 2 times, most recently from 2a18445 to 9fdcd0a Compare October 26, 2025 01:31
@snejus
Copy link
Member Author

snejus commented Nov 30, 2025

@semohr would be keen to merge it if it looks good.

Copy link
Contributor

@semohr semohr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, seems like a good enough refactor to me!

And update imports that have been raising the deprecation warning.
@snejus snejus enabled auto-merge December 2, 2025 01:51
@snejus snejus merged commit 6abb901 into master Dec 2, 2025
19 checks passed
@snejus snejus deleted the always-enable-mb branch December 2, 2025 01:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Certain albums are not searched on musicbrainz with any plugin enabled?

4 participants