From e73731a2ea12891a32ace9cc6dd27e4c997708ca Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sat, 21 Jul 2018 10:06:08 +0200 Subject: [PATCH] fixes a random dead lock --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 7a90d69d..3b0a5729 100644 --- a/test/Makefile +++ b/test/Makefile @@ -7,11 +7,11 @@ project.lock.json: project.json dnu restore $(BINTARGET): project.lock.json - dnu build + dnu build --configuration $(CONFIGURATION) test: $(BINTARGET) - dnx test + ASPNET_ENV=Development dnx test -maxthreads 1 .PHONY: test