Skip to content

Commit

Permalink
extended server wait period for async server tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyaven committed Oct 15, 2023
1 parent 619d872 commit f80c780
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/async_server_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
os:
- ubuntu-latest
# - windows-latest
# - macos-latest
- macos-latest
python-version:
- "3.7"
- "3.8"
Expand All @@ -22,8 +22,8 @@ jobs:
exclude:
- os: windows-latest
python-version: "3.12"
- os: ubuntu-latest
python-version: "3.12"
# - os: ubuntu-latest
# python-version: "3.12"
runs-on: ${{matrix.os}}
name: 'Run Tests on ${{matrix.os}} with Python ${{matrix.python-version}}'

Expand Down
2 changes: 1 addition & 1 deletion tests/pystackql_async_server_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def setUpModule():
print(res)
print("starting stackql server...")
PyStackQLTestsBase.server_process = subprocess.Popen([PyStackQLTestsBase.stackql.bin_path, "srv", "--pgsrv.address", server_address, "--pgsrv.port", str(server_port)])
time.sleep(5)
time.sleep(30)

def tearDownModule():
print("stopping stackql server...")
Expand Down

0 comments on commit f80c780

Please sign in to comment.