Run tests more quiet/faster building wheels

We are mostly interested it installed alright.
This commit is contained in:
Daniele Varrazzo 2019-04-22 11:10:47 +01:00
parent 285c64d101
commit 1b2c1d620f

View File

@ -450,12 +450,19 @@ def run_test_suite():
os.environ.pop('OPENSSL_CONF', None) os.environ.pop('OPENSSL_CONF', None)
# Run the unit test # Run the unit test
cmdline = [
py_exe(),
'-c',
"import tests; tests.unittest.main(defaultTest='tests.test_suite')",
]
if is_wheel():
os.environ['PSYCOPG2_TEST_FAST'] = '1'
else:
cmdline.append('--verbose')
os.chdir(package_dir()) os.chdir(package_dir())
run_command( run_command(cmdline)
[py_exe(), '-c']
+ ["import tests; tests.unittest.main(defaultTest='tests.test_suite')"]
+ ["--verbose"]
)
def step_on_success(): def step_on_success():