Skip to content

Commit 1664034

Browse files
committed
#13 Remove test order
1 parent 8882d11 commit 1664034

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tests/test_command.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,18 @@
1717
)
1818

1919

20-
@pytest.mark.order(index=1)
2120
def test_can_show_help():
2221
with pytest.raises(SystemExit) as error_info:
2322
check_done_command(["--help"])
2423
assert error_info.value.code == 0
2524

2625

27-
@pytest.mark.order(index=2)
2826
def test_can_show_version():
2927
with pytest.raises(SystemExit) as error_info:
3028
check_done_command(["--version"])
3129
assert error_info.value.code == 0
3230

3331

34-
@pytest.mark.order(index=3)
3532
@pytest.mark.skipif(
3633
not HAS_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED,
3734
reason=REASON_SHOULD_HAVE_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED,
@@ -42,7 +39,6 @@ def test_can_set_root_dir_argument():
4239
assert exit_code == 0
4340

4441

45-
@pytest.mark.order(index=4)
4642
@pytest.mark.skipif(
4743
not HAS_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED,
4844
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):
5450
assert check_done_warning_messages >= 1
5551

5652

57-
@pytest.mark.order(index=5)
5853
@pytest.mark.skipif(
5954
not HAS_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED,
6055
reason=REASON_SHOULD_HAVE_DEMO_CHECK_DONE_ORGANIZATION_PROJECT_CONFIGURED,

0 commit comments

Comments
 (0)