We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38eb079 commit 2aa8b6aCopy full SHA for 2aa8b6a
.github/workflows/bdd-tests.yml
@@ -57,13 +57,10 @@ jobs:
57
env:
58
DATABASE_URI: "postgresql+psycopg://postgres:pgs3cr3t@postgres:5432/testdb"
59
60
- - name: Debug runtime environment
61
- run: which firefox; firefox --version; which geckodriver; geckodriver --version; env
62
-
+ # The pipeline-selenium image runs as root so we must sudo to vscode to use the Firefox driver
+ # The chrome driver doesn't seem to have a problem with this
63
- name: Run Integration Tests
64
- run: |
65
- behave -v
66
- cat geckodriver.log
+ run: sudo -u vscode behave
67
68
DRIVER: "firefox"
69
0 commit comments