Skip to content

Commit 3e58967

Browse files
committed
fix: ci
1 parent ffdf9a9 commit 3e58967

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
run: docker build -t virtual-display-test .
1818

1919
- 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
2024
run: |
21-
# Run the container and execute the test script inside it
22-
# We use the start_vd.sh script to initialize the display before running python
23-
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

Comments
 (0)