77_PYTHON_VERSION = "." .join (map (str , sys .version_info [:2 ]))
88
99
10- @pytest .mark .end_to_end ()
10+ @pytest .mark .end_to_end
1111def test_bake_project (cookies ):
1212 result = cookies .bake (
1313 extra_context = {"project_slug" : "helloworld" , "python_version" : _PYTHON_VERSION },
@@ -19,7 +19,7 @@ def test_bake_project(cookies):
1919 assert result .project_path .is_dir ()
2020
2121
22- @pytest .mark .end_to_end ()
22+ @pytest .mark .end_to_end
2323def test_remove_readthedocs (cookies ):
2424 result = cookies .bake (
2525 extra_context = {
@@ -38,7 +38,7 @@ def test_remove_readthedocs(cookies):
3838 assert "readthedocs" not in readme
3939
4040
41- @pytest .mark .end_to_end ()
41+ @pytest .mark .end_to_end
4242def test_remove_github_actions (cookies ):
4343 result = cookies .bake (
4444 extra_context = {"add_github_actions" : "no" , "python_version" : _PYTHON_VERSION },
@@ -54,7 +54,7 @@ def test_remove_github_actions(cookies):
5454 assert "github/workflow/status" not in readme
5555
5656
57- @pytest .mark .end_to_end ()
57+ @pytest .mark .end_to_end
5858def test_remove_tox (cookies ):
5959 result = cookies .bake (
6060 extra_context = {"add_tox" : "no" , "python_version" : _PYTHON_VERSION },
@@ -70,7 +70,7 @@ def test_remove_tox(cookies):
7070 assert not tox .exists ()
7171
7272
73- @pytest .mark .end_to_end ()
73+ @pytest .mark .end_to_end
7474def test_remove_license (cookies ):
7575 result = cookies .bake (
7676 extra_context = {
@@ -87,7 +87,7 @@ def test_remove_license(cookies):
8787 assert not license_ .exists ()
8888
8989
90- @pytest .mark .end_to_end ()
90+ @pytest .mark .end_to_end
9191@pytest .mark .skipif (os .environ .get ("CI" ) is None , reason = "Run only in CI." )
9292def test_check_pixi_and_run_all_checks (cookies ):
9393 """Test pixi and pre-commit passes."""
0 commit comments