We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e9c855 commit 7f27820Copy full SHA for 7f27820
src/mepo/registry.py
@@ -37,7 +37,10 @@ def __validate(self, d):
37
if "fixture" in v:
38
# In case of a fixture, develop is the only additional allowed key
39
num_fixtures += 1
40
- assert list(v.keys()) == ["fixture"] or list(v.keys()) == ["fixture", "develop"]
+ assert list(v.keys()) == ["fixture"] or list(v.keys()) == [
41
+ "fixture",
42
+ "develop",
43
+ ]
44
else:
45
# For non-fixture, one and only one of branch/tag/hash allowed
46
xsection = git_tag_types.intersection(set(v.keys()))
0 commit comments