Skip to content

Commit f80c780

Browse files
committed
extended server wait period for async server tests
1 parent 619d872 commit f80c780

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/async_server_tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
os:
1212
- ubuntu-latest
1313
# - windows-latest
14-
# - macos-latest
14+
- macos-latest
1515
python-version:
1616
- "3.7"
1717
- "3.8"
@@ -22,8 +22,8 @@ jobs:
2222
exclude:
2323
- os: windows-latest
2424
python-version: "3.12"
25-
- os: ubuntu-latest
26-
python-version: "3.12"
25+
# - os: ubuntu-latest
26+
# python-version: "3.12"
2727
runs-on: ${{matrix.os}}
2828
name: 'Run Tests on ${{matrix.os}} with Python ${{matrix.python-version}}'
2929

tests/pystackql_async_server_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def setUpModule():
2525
print(res)
2626
print("starting stackql server...")
2727
PyStackQLTestsBase.server_process = subprocess.Popen([PyStackQLTestsBase.stackql.bin_path, "srv", "--pgsrv.address", server_address, "--pgsrv.port", str(server_port)])
28-
time.sleep(5)
28+
time.sleep(30)
2929

3030
def tearDownModule():
3131
print("stopping stackql server...")

0 commit comments

Comments
 (0)