File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -85,20 +85,20 @@ jobs:
8585 GITHUB_ACTIONS : ' true'
8686 run : |
8787 python3 run_tests.py
88-
88+
8989 - name : Start StackQL server (Linux/macOS)
9090 if : matrix.os != 'windows-latest'
9191 shell : bash
9292 run : |
93- nohup /tmp/stackql -v --pgsrv.port=5466 srv &
93+ nohup /tmp/stackql -v --pgsrv.port=5444 srv &
9494 sleep 5
9595
9696 - name : Start StackQL server (Windows)
9797 if : matrix.os == 'windows-latest'
9898 shell : pwsh
9999 run : |
100100 Start-Process -FilePath "C:\Temp\stackql.exe" `
101- -ArgumentList "-v", "--pgsrv.port=5466 ", "srv"
101+ -ArgumentList "-v", "--pgsrv.port=5444 ", "srv"
102102 Start-Sleep -Seconds 5
103103
104104 - name : Run server tests
Original file line number Diff line number Diff line change 11# start server if not running
22echo " checking if server is running"
33if [ -z " $( ps | grep stackql) " ]; then
4- nohup ./stackql -v --pgsrv.port=5466 srv &
4+ nohup ./stackql -v --pgsrv.port=5444 srv &
55 sleep 5
66else
77 echo " server is already running"
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Server tests are skipped by default because they require a running StackQL serve
5252
53531 . Start a StackQL server:
5454 ``` bash
55- stackql srv --pgsrv.address 127.0.0.1 --pgsrv.port 5466
55+ stackql srv --pgsrv.address 127.0.0.1 --pgsrv.port 5444
5656 ```
5757
58582 . Run the server tests:
Original file line number Diff line number Diff line change 1414import pandas as pd
1515
1616# Server connection settings
17- SERVER_PORT = 5466
17+ SERVER_PORT = 5444
1818SERVER_ADDRESS = "127.0.0.1"
1919
2020# Expected properties and patterns for validation
You can’t perform that action at this time.
0 commit comments