File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 13
13
@skip_on_github_actions_with_win
14
14
@pytest .mark .end_to_end
15
15
@pytest .mark .parametrize ("infer_dependencies" , ["true" , "false" ])
16
- def test_infer_dependencies_from_task (
17
- tmp_path , infer_dependencies
18
- ):
16
+ def test_infer_dependencies_from_task (tmp_path , infer_dependencies ):
19
17
task_source = """
20
18
import pytask
21
19
@@ -34,7 +32,9 @@ def task_compile_document():
34
32
tmp_path .joinpath ("document.tex" ).write_text (textwrap .dedent (latex_source ))
35
33
tmp_path .joinpath ("sub_document.tex" ).write_text ("Lorem ipsum." )
36
34
37
- tmp_path .joinpath ("pyproject.toml" ).write_text (f"[tool.pytask.ini_options]\n infer_latex_dependencies = { infer_dependencies } " )
35
+ tmp_path .joinpath ("pyproject.toml" ).write_text (
36
+ f"[tool.pytask.ini_options]\n infer_latex_dependencies = { infer_dependencies } "
37
+ )
38
38
39
39
session = main ({"paths" : tmp_path })
40
40
assert session .exit_code == ExitCode .OK
You can’t perform that action at this time.
0 commit comments