Skip to content

Commit 81d8e0e

Browse files
committed
ci update
1 parent 8b730f9 commit 81d8e0e

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,15 @@ jobs:
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

pystackql/core/stackql.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

start-stackql-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# start server if not running
22
echo "checking if server is running"
33
if [ -z "$(ps | grep stackql)" ]; then
4-
nohup ./stackql -v --pgsrv.port=5444 srv &
4+
nohup ./stackql -v --pgsrv.port=5466 srv &
55
sleep 5
66
else
77
echo "server is already running"

tests/test_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import pandas as pd
1515

1616
# Server connection settings
17-
SERVER_PORT = 5444
17+
SERVER_PORT = 5466
1818
SERVER_ADDRESS = "127.0.0.1"
1919

2020
# Expected properties and patterns for validation

0 commit comments

Comments
 (0)