Skip to content

Commit e526508

Browse files
committed
ci update
1 parent 81d8e0e commit e526508

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/test.yaml

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

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=5466 srv &
4+
nohup ./stackql -v --pgsrv.port=5444 srv &
55
sleep 5
66
else
77
echo "server is already running"

tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Server tests are skipped by default because they require a running StackQL serve
5252

5353
1. 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

5858
2. Run the server tests:

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 = 5466
17+
SERVER_PORT = 5444
1818
SERVER_ADDRESS = "127.0.0.1"
1919

2020
# Expected properties and patterns for validation

0 commit comments

Comments
 (0)