From d8e911d375b848abad4ef34bf28837a02985b620 Mon Sep 17 00:00:00 2001 From: Christopher Whelan Date: Fri, 8 Feb 2019 19:09:19 -0800 Subject: [PATCH] BLD: prevent asv from calling sys.stdin.close() by using different launch method --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f0567d76659b6..c86d5c50705a8 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"