From fcfbc8285e5d5c9650c368d884a219d809df14c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0nan=C3=A7=20G=C3=BCm=C3=BC=C5=9F?= Date: Thu, 31 Aug 2023 11:12:56 +0300 Subject: [PATCH] Remove Windows flakiness limiters As the only current platform is Ubuntu. --- .github/workflows/test.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dc38908a9..89321bdf5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: @@ -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) @@ -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