https://forge.softwareheritage.org/source/swh-scheduler.git
Revision c46ffadf7adf24c7eb3ffce062e8ade3818c79cc authored by David Douard on 08 February 2022, 16:26:17 UTC, committed by David Douard on 08 February 2022, 16:34:10 UTC
so that tests do not depend on a lucky guess on what the scheduler db
state actually is. DB initialization scripts do create task types for
git, hg and svn (used in tests) but these tests depends on the fact the
db fixture has been called already once before, so tables are
truncated (especially the task and task_type ones).

For example running a single test involved in task-type creation was
failing (eg. 'pytest swh -k test_create_task_type_idempotence').

This commit does make tests not collide with any existing task or task
type initialization scripts may create.

Note that this also means that there is actually no test dealing with
the scheduler db state after initialization, which is not grat and
should be addressed.
1 parent 9f601f5
Raw File
Tip revision: c46ffadf7adf24c7eb3ffce062e8ade3818c79cc authored by David Douard on 08 February 2022, 16:26:17 UTC
Prefix task types used in tests with 'test-'
Tip revision: c46ffad
Makefile
# Makefile driver for SWH Python modules. DO NOT CHANGE.
# You can add custom Makefile rules to Makefile.local

include ../Makefile.python
-include Makefile.local
back to top