Skip to content

Commit

Permalink
Remove Windows flakiness limiters
Browse files Browse the repository at this point in the history
As the only current platform is Ubuntu.
  • Loading branch information
inancgumus committed Aug 31, 2023
1 parent 242a5a0 commit fcfbc82
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ jobs:
set -x
go version
args=("-race")
# Run with less concurrency on Windows to minimize flakiness.
if [[ "${{ matrix.platform }}" == windows* ]]; then
unset args[2]
args[1]="1"
export GOMAXPROCS=1
fi
K6_BROWSER_EXECUTABLE_PATH=/usr/bin/google-chrome K6_BROWSER_HEADLESS=true go test "${args[@]}" -timeout 5m ./...
test-tip:
Expand Down Expand Up @@ -93,12 +87,6 @@ jobs:
run: |
go version
args=("-race")
# Run with less concurrency on Windows to minimize flakiness.
if [[ "${{ matrix.platform }}" == windows* ]]; then
unset args[2]
args[1]="1"
export GOMAXPROCS=1
fi
echo "mode: set" > coverage.txt
for pkg in $(go list ./... | grep -v vendor); do
list=$(go list -test -f '{{ join .Deps "\n"}}' $pkg | grep github.com/grafana/xk6-browser | grep -v vendor || true)
Expand Down Expand Up @@ -138,12 +126,6 @@ jobs:
set -x
go version
args=("-race")
# Run with less concurrency on Windows to minimize flakiness.
if [[ "${{ matrix.platform }}" == windows* ]]; then
unset args[2]
args[1]="1"
export GOMAXPROCS=1
fi
cat go.mod | grep go.k6.io/k6
# Get the latest master version of k6
go get go.k6.io/k6@master
Expand Down

0 comments on commit fcfbc82

Please sign in to comment.