From ea3006aa7984090ce19c1eb351ba2e5a856fa77d Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Thu, 19 Apr 2018 14:01:05 -0400 Subject: [PATCH] Run fewer tests --- test/test_python.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_python.py b/test/test_python.py index fbb253650..3dfc5dd18 100644 --- a/test/test_python.py +++ b/test/test_python.py @@ -56,4 +56,8 @@ def pytest_generate_tests(metafunc): parts = line.split() if len(parts) == 1: test_modules.append(parts[0]) + # XXX: The tests take too long to run, so we're just doing a + # sanity check on the first 25 + if len(test_modules) > 25: + break metafunc.parametrize("python_test", test_modules)