Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kokoro fix #1068

Merged
merged 14 commits into from
Apr 20, 2023
2 changes: 1 addition & 1 deletion perfmetrics/scripts/continuous_test/gcp_ubuntu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sudo cp ~/temp/bin/gcsfuse /usr/bin
sudo cp ~/temp/sbin/mount.gcsfuse /sbin

# Executing integration tests
GODEBUG=asyncpreemptoff=1 go test ./tools/integration_tests/... --integrationTest -v --testbucket=gcsfuse-integration-tests
GODEBUG=asyncpreemptoff=1 go test ./tools/integration_tests/... -p 1 --integrationTest -v --testbucket=gcsfuse-integration-tests

# Mounting gcs bucket
cd "./perfmetrics/scripts/"
Expand Down
2 changes: 1 addition & 1 deletion perfmetrics/scripts/presubmit_test/pr_perf_test/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ echo checkout PR branch
git checkout pr/$KOKORO_GITHUB_PULL_REQUEST_NUMBER

# Executing integration tests
GODEBUG=asyncpreemptoff=1 go test ./tools/integration_tests/... --integrationTest -v --testbucket=gcsfuse-integration-tests
GODEBUG=asyncpreemptoff=1 go test ./tools/integration_tests/... -p 1 --integrationTest -v --testbucket=gcsfuse-integration-tests

# Executing perf tests
echo Mounting gcs bucket from pr branch
Expand Down