We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1681e02 commit 7e23a23Copy full SHA for 7e23a23
.pre-commit-config.yaml
@@ -53,7 +53,7 @@ repos:
53
- pytest>=6.1.2
54
- enrich>=1.2.5
55
- repo: https://github.com/PyCQA/pylint
56
- rev: v3.0.0a6
+ rev: v3.0.3
57
hooks:
58
- id: pylint
59
additional_dependencies:
test/test_unit.py
@@ -142,3 +142,10 @@ def test_run_compat() -> None:
142
assert ours.stdout == original.stdout
143
assert ours.stderr == original.stderr
144
assert ours.args == original.args
145
+
146
147
+def test_run_waits_for_completion(tmp_path):
148
+ """run() should always wait for the process to complete."""
149
+ tmpfile = tmp_path / "output.txt"
150
+ run(f"sleep 0.1 && echo 42 > {str(tmpfile)}")
151
+ assert tmpfile.read_text() == "42\n"
0 commit comments