We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0188cd commit 23e4934Copy full SHA for 23e4934
.github/workflows/parallel.yml
@@ -25,13 +25,17 @@ jobs:
25
uv tree
26
27
- name: Collect tests
28
- run: uv run -- pytest --collect-only --quiet | tee collected.txt
+ run: |
29
+ uv run -- pytest --collect-only --quiet | tee collected.txt
30
+ # Delete the last two lines
31
+ sed -i '' -e '$d' collected.txt
32
33
34
- shell: uv run -- python {0}
35
run: |
36
with open("collected.txt") as lines:
37
for line in lines:
- print(line.strip())
38
+ print(line.strip().partition("::"))
39
40
test:
41
name: Test
0 commit comments