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 48c14f5 commit f0363e5Copy full SHA for f0363e5
.github/workflows/tests.yml
@@ -31,8 +31,12 @@ jobs:
31
working-directory: ./libs/core
32
run: |
33
poetry install
34
+ POETRY_ENV=$(poetry env info --path)
35
+ echo $POETRY_ENV
36
+ echo "POETRY_ENV=$POETRY_ENV" >> $GITHUB_ENV
37
38
- name: Run unit tests
39
- source $(poetry env info --path)/bin/activate
40
+ echo ${{ env.POETRY_ENV }}
41
+ source ${{ env.POETRY_ENV }}/bin/activate
42
poetry run pytest libs/core
0 commit comments