Changeset: 3988d4e22333 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/3988d4e22333
Modified Files:
testing/Mtest.py.in
Branch: Aug2024
Log Message:
Only attempt to connect if we actually have a running server.
diffs (12 lines):
diff --git a/testing/Mtest.py.in b/testing/Mtest.py.in
--- a/testing/Mtest.py.in
+++ b/testing/Mtest.py.in
@@ -2913,7 +2913,7 @@ def DoIt(env, SERVER, CALL, TST, EXT, Te
elif CALL == 'python':
# do clean up between tests if no dependent tests
# borrow clean up function from sqllogictest
- if not nodrop and not os.path.exists(TST+'.reqtests'):
+ if not nodrop and not os.path.exists(TST+'.reqtests') and
pSrvr is not None:
import MonetDBtesting.sqllogictest as sqllogictest
with sqllogictest.SQLLogic(out=ClntErr) as sql:
try:
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]