Skip to content

Commit 31cbceb

Browse files
committed
Fix.
1 parent 3463bdb commit 31cbceb

File tree

3 files changed

+11
-16
lines changed

3 files changed

+11
-16
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12.3
1+
3.12

tests/test_task.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,10 @@ def task_second():
689689
"""
690690
tmp_path.joinpath("task_example.py").write_text(textwrap.dedent(source))
691691

692-
result = subprocess.run(("python",), cwd=tmp_path, capture_output=True, check=False)
692+
result = subprocess.run(
693+
("python", "task_example.py"), cwd=tmp_path, capture_output=True, check=False
694+
)
695+
assert "2 Succeeded" in result.stdout.decode()
693696
assert result.returncode == ExitCode.OK
694697

695698

uv.lock

Lines changed: 6 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)