We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6e6fbf commit c923b3dCopy full SHA for c923b3d
1 file changed
.github/actions/e2e-tests/action.yml
@@ -5,20 +5,18 @@ runs:
5
using: "composite"
6
7
steps:
8
- - name: Install poetry
+ - name: Install poetry and e2e test dependencies
9
shell: bash
10
run: |
11
pipx install poetry
12
- echo "$HOME/.local/bin" >> $GITHUB_PATH
13
-
14
- - name: Install e2e test dependencies
15
- shell: bash
16
- run: |
+ echo $PATH
+ echo $(find / -type f -executable -name poetry 2> /dev/null -print -quit)
17
cd tests/e2e-tests && poetry install
18
19
- name: Run e2e tests
20
21
+ export PATH="$HOME/.local/bin:$PATH"
22
echo "$INTERNAL_DEV_TEST_PEM" > "${GITHUB_WORKSPACE}/internal-dev-test-1.pem"
23
chmod 600 "${GITHUB_WORKSPACE}/internal-dev-test-1.pem"
24
export PROXY_NAME=nhs-notify-supplier--internal-dev--nhs-notify-supplier
0 commit comments