We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b8cb77 commit 4d48990Copy full SHA for 4d48990
scripts/mysql_live_test.py
@@ -384,7 +384,7 @@ def run_backup_restore_test(self):
384
except RuntimeError as e:
385
if "Could not connect to MySQL" in str(e) or "MySQL client tools" in str(e):
386
self._log(f"MySQL not available, skipping test: {e}")
387
- return "skipped"
+ return False if GITHUB_ACTIONS else "skipped"
388
else:
389
self._log(f"{SYMBOL_FAIL} {self.connector_name} backup/restore test FAILED: {e}")
390
return False
0 commit comments