Skip to content

Commit d2777d3

Browse files
committed
debug: Remove underscores from url
1 parent 8078815 commit d2777d3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/run-integration-tests-postgresql.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
uses: docker/setup-buildx-action@v3
3333

3434
- name: Start containers
35-
run: docker compose -f "compas/docker-compose-postgresql.yml" up -d --build --compatibility
35+
run: docker compose -f "compas/docker-compose-postgresql.yml" up -d --build
3636
env:
37-
COMPAS_HOSTNAME: compas_reverse-proxy_1
37+
COMPAS_HOSTNAME: compas-reverse-proxy-1
3838
CONFIGURATION_LOCATION: /nginx.conf
3939

4040
- name: Wait until containers started
@@ -45,11 +45,11 @@ jobs:
4545
- name: Execute integration tests (firefox)
4646
# Using the Docker Image from ppodgorsek (https://github.com/ppodgorsek/docker-robot-framework)
4747
# to run the Robot Framework Test Scripts.
48-
# To connect with the Docker Compose and use http://compas_reverse-proxy_1/ as URL we are
48+
# To connect with the Docker Compose and use http://compas-reverse-proxy-1/ as URL we are
4949
# connecting to the same network "compas_default" that's started bij Docker Compose.
5050
run: |
5151
docker run --rm -e BROWSER=firefox \
52-
-e ROBOT_OPTIONS="-v url:http://compas_reverse-proxy_1/" \
52+
-e ROBOT_OPTIONS="-v url:http://compas-reverse-proxy-1/" \
5353
-v $(pwd)/target/firefox:/opt/robotframework/reports:Z \
5454
-v $(pwd)/integration-testing:/opt/robotframework/tests:Z \
5555
--user $(id -u):$(id -g) \
@@ -61,11 +61,11 @@ jobs:
6161
- name: Execute integration tests (chromium)
6262
# Using the Docker Image from ppodgorsek (https://github.com/ppodgorsek/docker-robot-framework)
6363
# to run the Robot Framework Test Scripts.
64-
# To connect with the Docker Compose and use http://compas_reverse-proxy_1/ as URL we are
64+
# To connect with the Docker Compose and use http://compas-reverse-proxy-1/ as URL we are
6565
# connecting to the same network "compas_default" that's started bij Docker Compose.
6666
run: |
6767
docker run --rm -e BROWSER=chromium \
68-
-e ROBOT_OPTIONS="-v url:http://compas_reverse-proxy_1/" \
68+
-e ROBOT_OPTIONS="-v url:http://compas-reverse-proxy-1/" \
6969
-v $(pwd)/target/firefox:/opt/robotframework/reports:Z \
7070
-v $(pwd)/integration-testing:/opt/robotframework/tests:Z \
7171
--user $(id -u):$(id -g) \

0 commit comments

Comments
 (0)