Skip to content

Commit 5f390a3

Browse files
ci: Continue debug things on windows runner
1 parent 27dd901 commit 5f390a3

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,19 @@ jobs:
4242

4343
- name: "Debug poetry"
4444
run: |
45-
$(poetry env activate)
4645
poetry env list
4746
poetry show
4847
poetry run python3 -c 'import sys; print(sys.exec_prefix)'
4948
poetry run python3 -c 'import sys; print(sys.base_exec_prefix)'
5049
poetry run python3 -c 'import sys; print(sys.path)'
50+
./.venv/bin/python3 -c 'import sys; print(sys.exec_prefix)'
51+
./.venv/bin/python3 -c 'import sys; print(sys.base_exec_prefix)'
52+
./.venv/bin/python3 -c 'import sys; print(sys.path)'
5153
5254
- name: "Show available modules"
5355
run: |
54-
$(poetry env activate)
5556
poetry run python3 -c 'help("modules")'
57+
./.venv/bin/python3 -c 'help("modules")'
5658
5759
- name: "Import package"
5860
run: "poetry run python3 -c 'import aiohttp_middlewares'"

0 commit comments

Comments
 (0)