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 e1a2fe4 commit f1451e1Copy full SHA for f1451e1
.github/workflows/ci.yaml
@@ -68,6 +68,8 @@ jobs:
68
matrix:
69
python-version: [ "3.9","3.10","3.11", "3.12" ]
70
runs-on: ubuntu-latest
71
+ env:
72
+ POETRY_VIRTUALENVS_IN_PROJECT: "true"
73
steps:
74
- uses: actions/checkout@v4
75
- name: Set up Python ${{ matrix.python-version }}
@@ -77,7 +79,7 @@ jobs:
77
79
- name: Install dependencies
78
80
run: |
81
make install
- make install-test-contract
82
+ source .venv/bin/activate && make install-test-contract
83
- name: Run unit tests
84
85
poetry run make test-contract
0 commit comments