swh-lister/swh/lister/debian
David Douard e3c0ea9d90 implement listers as plugins
Listers are declared as plugins via the `swh.workers` entry_point.

As such, the registry function is expected to return a dict with the
`task_modules` field (as for generic worker plugins), plus:

- `lister`: the lister class,
- `models`: list of SQLAlchemy models used by this lister,
- `init` (optionnal): hook (callable) used to initialize the lister's state
  (typically, create/initialize the database for this lister).
  If not set, the default implementation creates database tables (after
  optionally having deleted exisintg ones) according to models declared in
  the `models` register field.

There is no need for explicitely add lister task modules in the main
`conftest` module, but any new/extra lister to be tested must be registered
(the tested lister module must be properly installed in the test environment).

Also refactor a bit the cli tools:
- add support for the standard --config-file option at the 'lister' group
  level,
- move the --db-url to the 'lister' group,
- drop the --lister option for the `swh lister db-init` cli tool:
  initializing (especially with --drop-tables) the database for a single
  lister is unreliable, since all tables are created using a sibgle MetaData
  (in the same namespace).
2019-09-03 15:02:24 +02:00
..
tests flake8: remove unneeded imports 2019-01-15 18:17:20 +01:00
__init__.py implement listers as plugins 2019-09-03 15:02:24 +02:00
lister.py Drop SWH prefix in classes everywhere 2019-06-20 19:08:46 +02:00
tasks.py Remove debug logging from tasks' code 2019-01-17 13:58:29 +01:00
utils.py Add a lister for Debian-like package archives 2017-10-04 12:43:09 +02:00