Changeset View
Changeset View
Standalone View
Standalone View
swh/lister/core/tests/conftest.py
| import pytest | import pytest | ||||
| from swh.scheduler.tests.conftest import * # noqa | from swh.scheduler.tests.conftest import * # noqa | ||||
| @pytest.fixture(scope='session') | @pytest.fixture(scope='session') | ||||
| def celery_includes(): | def celery_includes(): | ||||
| return [ | return [ | ||||
| 'swh.lister.bitbucket.tasks', | 'swh.lister.bitbucket.tasks', | ||||
| 'swh.lister.cgit.tasks', | |||||
| 'swh.lister.cran.tasks', | 'swh.lister.cran.tasks', | ||||
| 'swh.lister.debian.tasks', | 'swh.lister.debian.tasks', | ||||
| 'swh.lister.github.tasks', | 'swh.lister.github.tasks', | ||||
| 'swh.lister.gitlab.tasks', | 'swh.lister.gitlab.tasks', | ||||
| 'swh.lister.gnu.tasks', | 'swh.lister.gnu.tasks', | ||||
| 'swh.lister.npm.tasks', | 'swh.lister.npm.tasks', | ||||
| 'swh.lister.pypi.tasks', | 'swh.lister.pypi.tasks', | ||||
| 'swh.lister.phabricator.tasks', | 'swh.lister.phabricator.tasks', | ||||
| ] | ] | ||||