7
7
_PYTHON_VERSION = "." .join (map (str , sys .version_info [:2 ]))
8
8
9
9
10
- @pytest .mark .end_to_end ()
10
+ @pytest .mark .end_to_end
11
11
def test_bake_project (cookies ):
12
12
result = cookies .bake (
13
13
extra_context = {"project_slug" : "helloworld" , "python_version" : _PYTHON_VERSION },
@@ -19,7 +19,7 @@ def test_bake_project(cookies):
19
19
assert result .project_path .is_dir ()
20
20
21
21
22
- @pytest .mark .end_to_end ()
22
+ @pytest .mark .end_to_end
23
23
def test_remove_readthedocs (cookies ):
24
24
result = cookies .bake (
25
25
extra_context = {
@@ -38,7 +38,7 @@ def test_remove_readthedocs(cookies):
38
38
assert "readthedocs" not in readme
39
39
40
40
41
- @pytest .mark .end_to_end ()
41
+ @pytest .mark .end_to_end
42
42
def test_remove_github_actions (cookies ):
43
43
result = cookies .bake (
44
44
extra_context = {"add_github_actions" : "no" , "python_version" : _PYTHON_VERSION },
@@ -54,7 +54,7 @@ def test_remove_github_actions(cookies):
54
54
assert "github/workflow/status" not in readme
55
55
56
56
57
- @pytest .mark .end_to_end ()
57
+ @pytest .mark .end_to_end
58
58
def test_remove_tox (cookies ):
59
59
result = cookies .bake (
60
60
extra_context = {"add_tox" : "no" , "python_version" : _PYTHON_VERSION },
@@ -70,7 +70,7 @@ def test_remove_tox(cookies):
70
70
assert not tox .exists ()
71
71
72
72
73
- @pytest .mark .end_to_end ()
73
+ @pytest .mark .end_to_end
74
74
def test_remove_license (cookies ):
75
75
result = cookies .bake (
76
76
extra_context = {
@@ -87,7 +87,7 @@ def test_remove_license(cookies):
87
87
assert not license_ .exists ()
88
88
89
89
90
- @pytest .mark .end_to_end ()
90
+ @pytest .mark .end_to_end
91
91
@pytest .mark .skipif (os .environ .get ("CI" ) is None , reason = "Run only in CI." )
92
92
def test_check_pixi_and_run_all_checks (cookies ):
93
93
"""Test pixi and pre-commit passes."""
0 commit comments