1919from beets .dbcore .query import TrueQuery
2020from beets .importer import Action
2121from beets .library import Item
22- from beets .test import _common
2322from beets .test .helper import (
2423 AutotagImportTestCase ,
2524 AutotagStub ,
@@ -118,7 +117,6 @@ def run_mocked_command(self, modify_file_args={}, stdin=[], args=[]):
118117 self .run_command ("edit" , * args )
119118
120119
121- @_common .slow_test ()
122120@patch ("beets.library.Item.write" )
123121class EditCommandTest (IOMixin , EditMixin , BeetsTestCase ):
124122 """Black box tests for `beetsplug.edit`. Command line interaction is
@@ -315,7 +313,6 @@ def test_invalid_yaml(self, mock_write):
315313 assert mock_write .call_count == 0
316314
317315
318- @_common .slow_test ()
319316class EditDuringImporterTestCase (
320317 EditMixin , TerminalImportMixin , AutotagImportTestCase
321318):
@@ -332,7 +329,6 @@ def setUp(self):
332329 self .items_orig = [Item .from_path (f .path ) for f in self .import_media ]
333330
334331
335- @_common .slow_test ()
336332class EditDuringImporterNonSingletonTest (EditDuringImporterTestCase ):
337333 def setUp (self ):
338334 super ().setUp ()
@@ -467,7 +463,6 @@ def test_edit_apply_candidate_singleton(self):
467463 assert all ("match " in i .mb_trackid for i in self .lib .items ())
468464
469465
470- @_common .slow_test ()
471466class EditDuringImporterSingletonTest (EditDuringImporterTestCase ):
472467 def setUp (self ):
473468 super ().setUp ()
0 commit comments