17
17
)
18
18
19
19
20
- @pytest .mark .order (index = 1 )
21
20
def test_can_show_help ():
22
21
with pytest .raises (SystemExit ) as error_info :
23
22
check_done_command (["--help" ])
24
23
assert error_info .value .code == 0
25
24
26
25
27
- @pytest .mark .order (index = 2 )
28
26
def test_can_show_version ():
29
27
with pytest .raises (SystemExit ) as error_info :
30
28
check_done_command (["--version" ])
31
29
assert error_info .value .code == 0
32
30
33
31
34
- @pytest .mark .order (index = 3 )
35
32
@pytest .mark .skipif (
36
33
not HAS_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED ,
37
34
reason = REASON_SHOULD_HAVE_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED ,
@@ -42,7 +39,6 @@ def test_can_set_root_dir_argument():
42
39
assert exit_code == 0
43
40
44
41
45
- @pytest .mark .order (index = 4 )
46
42
@pytest .mark .skipif (
47
43
not HAS_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED ,
48
44
reason = REASON_SHOULD_HAVE_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED ,
@@ -54,7 +50,6 @@ def test_can_execute_check_done_command_and_get_warnings(caplog):
54
50
assert check_done_warning_messages >= 1
55
51
56
52
57
- @pytest .mark .order (index = 5 )
58
53
@pytest .mark .skipif (
59
54
not HAS_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED ,
60
55
reason = REASON_SHOULD_HAVE_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED ,
0 commit comments