From 0c0665caa9e95527d7c5ca4385c2486d5df29418 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 27 May 2019 23:41:58 -0400 Subject: Test runner return non-zero on failure --- source/merge.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/merge.d') diff --git a/source/merge.d b/source/merge.d index ae148a2..fcdd351 100644 --- a/source/merge.d +++ b/source/merge.d @@ -202,7 +202,7 @@ auto integration_test(ref Conda conda, string outdir, test_runner_t runner, test pytest_xunit2(testconf); } - if (conda.sh(runner.program ~ " " ~ runner.args ~ " --basetemp=" ~ basetemp) > 1) { + if (conda.sh(runner.program ~ " " ~ runner.args ~ " --basetemp=" ~ basetemp)) { return 1; } return 0; -- cgit