1 parent 27dd901 commit 5f390a3Copy full SHA for 5f390a3
1 file changed
.github/workflows/ci.yml
@@ -42,17 +42,19 @@ jobs:
42
43
- name: "Debug poetry"
44
run: |
45
- $(poetry env activate)
46
poetry env list
47
poetry show
48
poetry run python3 -c 'import sys; print(sys.exec_prefix)'
49
poetry run python3 -c 'import sys; print(sys.base_exec_prefix)'
50
poetry run python3 -c 'import sys; print(sys.path)'
+ ./.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)'
53
54
- name: "Show available modules"
55
56
poetry run python3 -c 'help("modules")'
57
+ ./.venv/bin/python3 -c 'help("modules")'
58
59
- name: "Import package"
60
run: "poetry run python3 -c 'import aiohttp_middlewares'"
0 commit comments