Skip to content

Commit d0e2c8c

Browse files
committed
ci update
1 parent eb25d2d commit d0e2c8c

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

.github/workflows/test.yaml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,23 @@ jobs:
3131
- name: Checkout
3232
uses: actions/checkout@v4.2.2
3333

34-
- name: Set up Python ${{ matrix.python-version }}
35-
uses: actions/setup-python@v5.6.0
36-
with:
37-
python-version: ${{ matrix.python-version }}
34+
# - name: Set up Python ${{ matrix.python-version }}
35+
# uses: actions/setup-python@v5.6.0
36+
# with:
37+
# python-version: ${{ matrix.python-version }}
3838

39-
- name: Upgrade pip
40-
shell: bash
41-
run: |
42-
python3 -m pip install --upgrade pip
39+
# - name: Upgrade pip
40+
# shell: bash
41+
# run: |
42+
# python3 -m pip install --upgrade pip
4343

44-
- name: Install pystackql with all dependencies
45-
run: |
46-
pip install -e .
44+
# - name: Install pystackql with all dependencies
45+
# run: |
46+
# pip install -e .
4747

48-
- name: Install test dependencies
49-
run: |
50-
pip install pytest>=6.2.5 pytest-cov>=2.12.0 nose>=1.3.7
48+
# - name: Install test dependencies
49+
# run: |
50+
# pip install pytest>=6.2.5 pytest-cov>=2.12.0 nose>=1.3.7
5151

5252
- name: setup-stackql
5353
uses: stackql/setup-stackql@v2.2.3
@@ -77,12 +77,12 @@ jobs:
7777
copy "%STACKQL_PATH%" "C:\Temp\stackql.exe"
7878
echo StackQL binary moved to C:\Temp\stackql.exe
7979
80-
- name: Run non-server tests
81-
env:
82-
GITHUB_ACTIONS: 'true'
83-
run: |
84-
python3 run_tests.py
85-
shell: bash
80+
# - name: Run non-server tests
81+
# env:
82+
# GITHUB_ACTIONS: 'true'
83+
# run: |
84+
# python3 run_tests.py
85+
# shell: bash
8686

8787
- name: Start StackQL server (Linux/macOS)
8888
if: matrix.os != 'windows-latest'
@@ -93,18 +93,18 @@ jobs:
9393
9494
- name: Start StackQL server (Windows)
9595
if: matrix.os == 'windows-latest'
96-
shell: powershell
96+
shell: cmd
9797
run: |
98-
$process = Start-Process -FilePath "C:\Temp\stackql.exe" -ArgumentList "-v", "--pgsrv.port=5444", "srv" -RedirectStandardOutput "stackql-server.log" -RedirectStandardError "stackql-server-error.log" -NoNewWindow -PassThru
99-
Write-Host "StackQL server started with PID: $($process.Id)"
100-
Start-Sleep -Seconds 5
98+
start /b cmd /c "C:\Temp\stackql.exe -v --pgsrv.port=5444 srv > stackql-server.log 2>&1"
99+
echo StackQL server started from C:\Temp\stackql.exe
100+
timeout /t 5 /nobreak > NUL
101101
102-
- name: Run server tests
103-
env:
104-
GITHUB_ACTIONS: 'true'
105-
run: |
106-
python3 run_server_tests.py
107-
shell: bash
102+
# - name: Run server tests
103+
# env:
104+
# GITHUB_ACTIONS: 'true'
105+
# run: |
106+
# python3 run_server_tests.py
107+
# shell: bash
108108

109109
- name: Stop StackQL server (Linux/macOS)
110110
if: matrix.os != 'windows-latest'

0 commit comments

Comments
 (0)