Skip to content

Commit 674907d

Browse files
committed
.
1 parent 03289b1 commit 674907d

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

.github/workflows/third_party.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ jobs:
102102
103103
uv pip install -r test-requirements.txt --exclude-newer "$(git show -s --date=format:'%Y-%m-%dT%H:%M:%SZ' --format=%cd HEAD)"
104104
uv pip install "typing-extensions @ ../typing-extensions-latest"
105-
printf "\n\nINSTALLED DEPENDENCIES ARE:\n\n%s\n\n" "$(uv pip list)"
105+
106+
printf "\n\nINSTALLED DEPENDENCIES ARE:\n\n"
107+
uv pip list
106108
107109
uv run --no-project pytest
108110
@@ -135,7 +137,9 @@ jobs:
135137
136138
uv pip install 'pycroscope[tests] @ .' --exclude-newer "$(git show -s --date=format:'%Y-%m-%dT%H:%M:%SZ' --format=%cd HEAD)"
137139
uv pip install "typing-extensions @ ../typing-extensions-latest"
138-
printf "\n\nINSTALLED DEPENDENCIES ARE:\n\n%s\n\n" "$(uv pip list)"
140+
141+
printf "\n\nINSTALLED DEPENDENCIES ARE:\n\n"
142+
uv pip list
139143
140144
uv run --no-project pytest pycroscope/
141145
@@ -170,7 +174,9 @@ jobs:
170174
171175
uv pip install "typeguard @ ." --group test --exclude-newer "$(git show -s --date=format:'%Y-%m-%dT%H:%M:%SZ' --format=%cd HEAD)"
172176
uv pip install "typing-extensions @ ../typing-extensions-latest"
173-
printf "\n\nINSTALLED DEPENDENCIES ARE:\n\n%s\n\n" "$(uv pip list)"
177+
178+
printf "\n\nINSTALLED DEPENDENCIES ARE:\n\n%"
179+
uv pip list
174180
175181
uv run --no-project pytest
176182
@@ -210,7 +216,9 @@ jobs:
210216
uv pip install "typed-argument-parser @ ." --exclude-newer "$(git show -s --date=format:'%Y-%m-%dT%H:%M:%SZ' --format=%cd HEAD)"
211217
uv pip install pytest --exclude-newer "$(git show -s --date=format:'%Y-%m-%dT%H:%M:%SZ' --format=%cd HEAD)"
212218
uv pip install "typing-extensions @ ../typing-extensions-latest"
213-
printf "\n\nINSTALLED DEPENDENCIES ARE:\n\n%s\n\n" "$(uv pip list)"
219+
220+
printf "\n\nINSTALLED DEPENDENCIES ARE:\n\n"
221+
uv pip list
214222
215223
uv run --no-project pytest
216224
@@ -244,7 +252,9 @@ jobs:
244252
uv pip install -r test-requirements.txt --exclude-newer "$(git show -s --date=format:'%Y-%m-%dT%H:%M:%SZ' --format=%cd HEAD)"
245253
uv pip install -e .
246254
uv pip install "typing_extensions @ ../typing-extensions-latest"
247-
printf "\n\nINSTALLED DEPENDENCIES ARE:\n\n%s\n\n" "$(uv pip list)"
255+
256+
printf "\n\nINSTALLED DEPENDENCIES ARE:\n\n"
257+
uv pip list
248258
249259
uv run --no-project pytest -n 2 ./mypy/test/teststubtest.py ./mypyc/test/test_run.py ./mypyc/test/test_external.py
250260

0 commit comments

Comments
 (0)