Skip to content

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 3c0aaac commit 95a87a4
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" ] && [ "$RUNNER_OS" == "Windows" ]; then
echo "skipping $f on Windows"
continue
fi
./k6extension run "$f"
done
- name: Check screenshot
Expand Down

0 comments on commit 95a87a4

Please sign in to comment.