Trying to discern if there is a difference in local URLs

Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
This commit is contained in:
Carlo Costino
2023-12-22 16:38:26 -05:00
parent 5e7319cbac
commit 92b33834e8

View File

@@ -97,10 +97,19 @@ jobs:
NOTIFY_E2E_TEST_PASSWORD: ${{ secrets.NOTIFY_E2E_TEST_PASSWORD }}
- name: Run Admin server
run: make run-flask &
- name: Run E2E tests
- name: Run E2E tests 1
# run: poetry run pytest -v --browser chromium --browser firefox --browser webkit tests/end_to_end
run: |
run:
curl --request GET --url "http://localhost:6012"
env:
NOTIFY_E2E_AUTH_STATE_PATH: ${{ secrets.NOTIFY_E2E_AUTH_STATE_PATH }}
NOTIFY_E2E_TEST_EMAIL: ${{ secrets.NOTIFY_E2E_TEST_EMAIL }}
NOTIFY_E2E_TEST_PASSWORD: ${{ secrets.NOTIFY_E2E_TEST_PASSWORD }}
# Run the E2E tests against the code found in this PR.
NOTIFY_E2E_TEST_URI: http://localhost:6012
- name: Run E2E tests 2
# run: poetry run pytest -v --browser chromium --browser firefox --browser webkit tests/end_to_end
run:
curl --request GET --url "http://127.0.0.1:6012"
env:
NOTIFY_E2E_AUTH_STATE_PATH: ${{ secrets.NOTIFY_E2E_AUTH_STATE_PATH }}