Skip to content

Commit 7e23a23

Browse files
committed
Add test for pycontribs#110
1 parent 1681e02 commit 7e23a23

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ repos:
5353
- pytest>=6.1.2
5454
- enrich>=1.2.5
5555
- repo: https://github.com/PyCQA/pylint
56-
rev: v3.0.0a6
56+
rev: v3.0.3
5757
hooks:
5858
- id: pylint
5959
additional_dependencies:

test/test_unit.py

+7
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,10 @@ def test_run_compat() -> None:
142142
assert ours.stdout == original.stdout
143143
assert ours.stderr == original.stderr
144144
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

Comments
 (0)