|
@@ -218,24 +218,21 @@ def test_resolve_checks_ok(names, all_checks, expected):
|
|
|
assert resolve_checks(names, all_checks) == expected
|
|
|
|
|
|
|
|
|
-@pytest.mark.parametrize('names,all_checks,words_in_exception,words_not_in_exception', [
|
|
|
+@pytest.mark.parametrize('names,all_checks,words_in_exception', [
|
|
|
(
|
|
|
['testA', 'testB'],
|
|
|
[],
|
|
|
['check', 'name', 'testA', 'testB'],
|
|
|
- ['tag', 'group', '@'],
|
|
|
),
|
|
|
(
|
|
|
['@group'],
|
|
|
[],
|
|
|
['tag', 'name', 'group'],
|
|
|
- ['check', '@'],
|
|
|
),
|
|
|
(
|
|
|
['testA', 'testB', '@group'],
|
|
|
[],
|
|
|
['check', 'name', 'testA', 'testB', 'tag', 'group'],
|
|
|
- ['@'],
|
|
|
),
|
|
|
(
|
|
|
['testA', 'testB', '@group'],
|
|
@@ -245,13 +242,10 @@ def test_resolve_checks_ok(names, all_checks, expected):
|
|
|
fake_check('from_group_2', ['preflight', 'group']),
|
|
|
],
|
|
|
['check', 'name', 'testA', 'testB'],
|
|
|
- ['tag', 'group', '@'],
|
|
|
),
|
|
|
])
|
|
|
-def test_resolve_checks_failure(names, all_checks, words_in_exception, words_not_in_exception):
|
|
|
+def test_resolve_checks_failure(names, all_checks, words_in_exception):
|
|
|
with pytest.raises(Exception) as excinfo:
|
|
|
resolve_checks(names, all_checks)
|
|
|
for word in words_in_exception:
|
|
|
assert word in str(excinfo.value)
|
|
|
- for word in words_not_in_exception:
|
|
|
- assert word not in str(excinfo.value)
|