We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffdf9a9 commit 3e58967Copy full SHA for 3e58967
1 file changed
.github/workflows/ci.yaml
@@ -17,7 +17,9 @@ jobs:
17
run: docker build -t virtual-display-test .
18
19
- name: Run Test Inside Container
20
+ # We chain the commands:
21
+ # 1. Start Virtual Display (start_vd.sh)
22
+ # 2. Activate the Python Virtual Environment (source .../activate)
23
+ # 3. Run the test script
24
run: |
- # Run the container and execute the test script inside it
- # We use the start_vd.sh script to initialize the display before running python
- docker run --rm virtual-display-test /bin/bash -c "source ./start_vd.sh 99 && python3 test_navigate.py"
25
+ docker run --rm virtual-display-test /bin/bash -c "source ./start_vd.sh 99 && source /opt/robotframework/bin/activate && python3 test_navigate.py"
0 commit comments