From 22a6f0c7a98c978d0d889f41e2d70e0978736904 Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Mon, 17 Sep 2018 10:11:27 +0200 Subject: [PATCH] Fixing tests by reducing minimum number of built wheels --- bin/run_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run_test.py b/bin/run_test.py index efcf3de5..94db6512 100755 --- a/bin/run_test.py +++ b/bin/run_test.py @@ -22,7 +22,7 @@ def single_run(test_project): print('%s built successfully. %i wheels built.' % (test_project, len(wheels))) # check some wheels were actually built - assert len(wheels) >= 4 + assert len(wheels) >= 3 # clean up shutil.rmtree('wheelhouse')