mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-02-17 01:20:32 +03:00
Run tests more quiet/faster building wheels
We are mostly interested it installed alright.
This commit is contained in:
parent
285c64d101
commit
1b2c1d620f
|
@ -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():
|
||||||
|
|
Loading…
Reference in New Issue
Block a user