From 1ce955da8c224b81ce3697cd2cc837d141446264 Mon Sep 17 00:00:00 2001 From: Christopher Whelan Date: Sat, 9 Feb 2019 09:25:58 -0800 Subject: [PATCH] BLD: prevent asv from calling sys.stdin.close() by using different launch method (#25237) --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f0567d76659b69..c86d5c50705a87 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -104,7 +104,7 @@ jobs: if git diff upstream/master --name-only | grep -q "^asv_bench/"; then cd asv_bench asv machine --yes - ASV_OUTPUT="$(asv dev)" + ASV_OUTPUT="$(asv run --quick --show-stderr --python=same --launch-method=spawn)" if [[ $(echo "$ASV_OUTPUT" | grep "failed") ]]; then echo "##vso[task.logissue type=error]Benchmarks run with errors" echo "$ASV_OUTPUT"