Skip to content

Commit

Permalink
fix: updating simulator workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
abanuelo committed Jul 12, 2024
1 parent 185c704 commit 02faad1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-simulators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
fi
# wait for status checks to pass
TIMEOUT=120 # Timeout in seconds
TIMEOUT=300 # Timeout in seconds
START_TIME=$(date +%s)
END_TIME=$((START_TIME + TIMEOUT))
while true; do
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
for version in "${carla_versions[@]}"; do
echo "============================= CARLA $version ============================="
export CARLA_ROOT="$version"
pytest tests/simulators/carla/test_carla.py
pytest tests/simulators/carla
done
'
Expand All @@ -160,7 +160,7 @@ jobs:
for version in "${webots_versions[@]}"; do
echo "============================= Webots $version ============================="
export WEBOTS_ROOT="$version"
pytest tests/simulators/webots/test_webots.py
pytest tests/simulators/webots
done
'
Expand Down

0 comments on commit 02faad1

Please sign in to comment.