@@ -52,19 +52,21 @@ jobs:
52
52
--network=compas_default \
53
53
ppodgorsek/robot-framework:latest
54
54
55
- # We need to wait for a new version of the Docker Image.
56
- # There is an issue with Chromium (https://github.com/ppodgorsek/docker-robot-framework/issues/372)
57
- # - name: Created output directory (chromium)
58
- # run: mkdir -p target/chromium
59
- # - name: Execute integration tests (chromium)
60
- # run: |
61
- # docker run --rm -e BROWSER=chromium \
62
- # -e ROBOT_OPTIONS="-v url:http://compas_reverse-proxy_1/" \
63
- # -v $(pwd)/target/firefox:/opt/robotframework/reports:Z \
64
- # -v $(pwd)/integration-testing:/opt/robotframework/tests:Z \
65
- # --user $(id -u):$(id -g) \
66
- # --network=compas_default \
67
- # ppodgorsek/robot-framework:latest
55
+ - name : Created output directory (chromium)
56
+ run : mkdir -p target/chromium
57
+ - name : Execute integration tests (chromium)
58
+ # Using the Docker Image from ppodgorsek (https://github.com/ppodgorsek/docker-robot-framework)
59
+ # to run the Robot Framework Test Scripts.
60
+ # To connect with the Docker Compose and use http://compas_reverse-proxy_1/ as URL we are
61
+ # connecting to the same network "compas_default" that's started bij Docker Compose.
62
+ run : |
63
+ docker run --rm -e BROWSER=chromium \
64
+ -e ROBOT_OPTIONS="-v url:http://compas_reverse-proxy_1/" \
65
+ -v $(pwd)/target/firefox:/opt/robotframework/reports:Z \
66
+ -v $(pwd)/integration-testing:/opt/robotframework/tests:Z \
67
+ --user $(id -u):$(id -g) \
68
+ --network=compas_default \
69
+ ppodgorsek/robot-framework:latest
68
70
69
71
- name : Archive Robot Framework Reports
70
72
if : failure()
0 commit comments