Skip to content

Commit f0363e5

Browse files
authored
chore: Update tests.yml
Signed-off-by: Diogo Goncalves <[email protected]>
1 parent 48c14f5 commit f0363e5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,12 @@ jobs:
3131
working-directory: ./libs/core
3232
run: |
3333
poetry install
34+
POETRY_ENV=$(poetry env info --path)
35+
echo $POETRY_ENV
36+
echo "POETRY_ENV=$POETRY_ENV" >> $GITHUB_ENV
3437
3538
- name: Run unit tests
3639
run: |
37-
source $(poetry env info --path)/bin/activate
40+
echo ${{ env.POETRY_ENV }}
41+
source ${{ env.POETRY_ENV }}/bin/activate
3842
poetry run pytest libs/core

0 commit comments

Comments
 (0)