Skip to content

Commit 0664e56

Browse files
committed
allowing for slow Windows CI boxes
1 parent 05f9637 commit 0664e56

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ci/run_all_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def main():
3838
test_line_sender_path = next(iter(
3939
build_dir.glob(f'**/test_line_sender{exe_suffix}')))
4040
system_test_path = pathlib.Path('system_test') / 'test.py'
41-
qdb_v = '7.3.9' # The version of QuestDB we'll test against.
41+
qdb_v = '7.3.10' # The version of QuestDB we'll test against.
4242

4343
run_cmd('cargo', 'test', '--', '--nocapture', cwd='questdb-rs')
4444
run_cmd('cargo', 'test', '--all-features', '--', '--nocapture', cwd='questdb-rs')

system_test/fixture.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ def start(self):
291291
java,
292292
'-DQuestDB-Runtime-0',
293293
'-ea',
294-
#'-Dnoebug',
295-
'-Debug',
294+
'-Dnoebug',
295+
# '-Debug',
296296
'-XX:+UnlockExperimentalVMOptions',
297297
'-XX:+AlwaysPreTouch',
298298
'-p', str(self._root_dir / 'bin' / 'questdb.jar'),
@@ -392,7 +392,7 @@ def retry_check_table(
392392
table_name,
393393
*,
394394
min_rows=1,
395-
timeout_sec=45,
395+
timeout_sec=120,
396396
log=True,
397397
log_ctx=None):
398398
sql_query = f"select * from '{table_name}'"

0 commit comments

Comments
 (0)