Skip to content

Commit d6e6fbf

Browse files
committed
Fix path
1 parent 1c1aa8c commit d6e6fbf

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/actions/e2e-tests/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ runs:
55
using: "composite"
66

77
steps:
8-
- name: Install poetry and e2e test dependencies
8+
- name: Install poetry
99
shell: bash
1010
run: |
1111
pipx install poetry
12+
echo "$HOME/.local/bin" >> $GITHUB_PATH
13+
14+
- name: Install e2e test dependencies
15+
shell: bash
16+
run: |
1217
cd tests/e2e-tests && poetry install
1318
1419
- name: Run e2e tests

0 commit comments

Comments
 (0)