File tree Expand file tree Collapse file tree 4 files changed +8
-11
lines changed
Expand file tree Collapse file tree 4 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 99 strategy :
1010 matrix :
1111 os :
12- # - ubuntu-latest
13- # - windows-latest
12+ - ubuntu-latest
13+ - windows-latest
1414 - macos-latest
1515 python-version :
1616 - " 3.9"
1717 - " 3.10"
1818 - " 3.11"
1919 - " 3.12"
2020 - " 3.13"
21- # exclude:
22- # - os: macos-latest
23- # python-version: "3.13"
2421 runs-on : ${{matrix.os}}
2522 name : ' ${{matrix.os}} Python ${{matrix.python-version}}'
2623
@@ -93,15 +90,15 @@ jobs:
9390 if : matrix.os != 'windows-latest'
9491 shell : bash
9592 run : |
96- nohup /tmp/stackql -v --pgsrv.port=5444 srv &
93+ nohup /tmp/stackql -v --pgsrv.port=5466 srv &
9794 sleep 5
9895
9996 - name : Start StackQL server (Windows)
10097 if : matrix.os == 'windows-latest'
10198 shell : pwsh
10299 run : |
103100 Start-Process -FilePath "C:\Temp\stackql.exe" `
104- -ArgumentList "-v", "--pgsrv.port=5444 ", "srv"
101+ -ArgumentList "-v", "--pgsrv.port=5466 ", "srv"
105102 Start-Sleep -Seconds 5
106103
107104 - name : Run server tests
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class StackQL:
2424 (`server_mode` only, defaults to `'127.0.0.1'`)
2525 :type server_address: str, optional
2626 :param server_port: The port of the StackQL server
27- (`server_mode` only, defaults to `5444 `)
27+ (`server_mode` only, defaults to `5466 `)
2828 :type server_port: int, optional
2929 :param backend_storage_mode: Specifies backend storage mode, options are 'memory' and 'file'
3030 (defaults to `'memory'`, this option is ignored in `server_mode`)
@@ -119,7 +119,7 @@ class StackQL:
119119 def __init__ (self ,
120120 server_mode = False ,
121121 server_address = '127.0.0.1' ,
122- server_port = 5444 ,
122+ server_port = 5466 ,
123123 output = 'dict' ,
124124 sep = ',' ,
125125 header = False ,
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=5444 srv &
4+ nohup ./stackql -v --pgsrv.port=5466 srv &
55 sleep 5
66else
77 echo " server is already running"
Original file line number Diff line number Diff line change 1414import pandas as pd
1515
1616# Server connection settings
17- SERVER_PORT = 5444
17+ SERVER_PORT = 5466
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