File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def task_run_r_script(produces = Path("out.txt")): ...
63
63
tmp_path .joinpath ("script.r" ).write_text (textwrap .dedent (r_script ))
64
64
65
65
result = runner .invoke (cli , [tmp_path .as_posix ()])
66
- print ( result . output ) # noqa: T201
66
+
67
67
assert result .exit_code == ExitCode .OK
68
68
assert tmp_path .joinpath ("out.txt" ).exists ()
69
69
@@ -93,7 +93,7 @@ def run_r_script(): ...
93
93
tmp_path .joinpath ("script.r" ).write_text (textwrap .dedent (r_script ))
94
94
95
95
result = runner .invoke (cli , [tmp_path .as_posix ()])
96
- print ( result . output ) # noqa: T201
96
+
97
97
assert result .exit_code == ExitCode .OK
98
98
assert tmp_path .joinpath ("out.txt" ).exists ()
99
99
@@ -160,7 +160,7 @@ def task_run_r_script(): ...
160
160
tmp_path .joinpath ("script.r" ).write_text (textwrap .dedent (r_script ))
161
161
162
162
result = runner .invoke (cli , [tmp_path .as_posix ()])
163
- print ( result . output ) # noqa: T201
163
+
164
164
assert result .exit_code == ExitCode .OK
165
165
assert tmp_path .joinpath ("out.txt" ).exists ()
166
166
You can’t perform that action at this time.
0 commit comments