Skip to content
This repository has been archived by the owner on Jan 30, 2025. It is now read-only.

Commit

Permalink
Add skip for examples/hosts.js on Windows
Browse files Browse the repository at this point in the history
It's not known why this example doesn't work in the github action
runner. It works fine on a Windows 11 computer.
  • Loading branch information
ankur22 committed Aug 16, 2023
1 parent 85b12a7 commit 0a455ba
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
fi
export K6_BROWSER_HEADLESS=true
for f in examples/*.js; do
if [ \( "$f" == "examples/hosts.js" \) -o \( "$RUNNER_OS" == "Windows" \) ]; then
echo "skipping $f on Windows"
continue
fi
./k6extension run "$f"
done
- name: Check screenshot
Expand Down

0 comments on commit 0a455ba

Please sign in to comment.