From f04059bfee4aa7c0b4e1036d31ba75c1543ac9ad Mon Sep 17 00:00:00 2001 From: Andrew Rogl Date: Sun, 26 Sep 2021 15:31:48 +1000 Subject: [PATCH] Commit #4038 --- docs/changelog.rst | 6 ++++++ test/test_ui.py | 2 ++ 2 files changed, 8 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 0e1cc30a5..800230e46 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,12 @@ Changelog This release now requires Python 3.6 or later (it removes support for Python 2.7, 3.4, and 3.5). +For packagers: + ++* We fixed a flaky test, named `test_album_art` in the `test_zero.py` file, + that some distributions had disabled. Disabling this test should no longer + be necessary. + :bug:`4037` :bug:`4038` 1.5.0 (August 19, 2021) ----------------------- diff --git a/test/test_ui.py b/test/test_ui.py index 9f3fbdaa5..9804b0a12 100644 --- a/test/test_ui.py +++ b/test/test_ui.py @@ -768,6 +768,7 @@ class ConfigTest(unittest.TestCase, TestHelper, _common.Assertions): os.makedirs(self.beetsdir) self._reset_config() + self.load_plugins() def tearDown(self): commands.default_commands.pop() @@ -778,6 +779,7 @@ class ConfigTest(unittest.TestCase, TestHelper, _common.Assertions): del os.environ['APPDATA'] else: os.environ['APPDATA'] = self._old_appdata + self.unload_plugins() self.teardown_beets() def _make_test_cmd(self):