diff --git a/debian/control b/debian/control --- a/debian/control +++ b/debian/control @@ -13,7 +13,7 @@ python3-swh.journal (>= 0.0.2), python3-swh.model (>= 0.0.15), python3-swh.objstorage (>= 0.0.17), - python3-swh.scheduler (>= 0.0.14), + python3-swh.scheduler (>= 0.0.32), python3-swh.storage (>= 0.0.102), python3-vcversioner Standards-Version: 3.9.6 diff --git a/requirements-swh.txt b/requirements-swh.txt --- a/requirements-swh.txt +++ b/requirements-swh.txt @@ -2,5 +2,5 @@ swh.journal >= 0.0.2 swh.model >= 0.0.15 swh.objstorage >= 0.0.17 -swh.scheduler >= 0.0.14 +swh.scheduler >= 0.0.32 swh.storage >= 0.0.102 diff --git a/swh/archiver/tests/test_archiver.py b/swh/archiver/tests/test_archiver.py --- a/swh/archiver/tests/test_archiver.py +++ b/swh/archiver/tests/test_archiver.py @@ -20,10 +20,11 @@ from swh.objstorage import get_objstorage from swh.objstorage.exc import ObjNotFoundError from swh.archiver.tests import SQL_DIR +from swh.scheduler.tests.celery_testing import CeleryTestFixture @pytest.mark.db -class TestArchiver(SingleDbTestFixture, unittest.TestCase): +class TestArchiver(CeleryTestFixture, SingleDbTestFixture, unittest.TestCase): """ Test the objstorage archiver. """