Skip to content

Commit 66731b5

Browse files
committed
ci update
1 parent 4e2768b commit 66731b5

File tree

1 file changed

+24
-26
lines changed

1 file changed

+24
-26
lines changed

.github/workflows/test.yaml

Lines changed: 24 additions & 26 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
@@ -86,12 +86,11 @@ jobs:
8686
Copy-Item $bin -Destination "C:\Temp\stackql.exe" -Force
8787
Write-Host "Moved real StackQL binary to C:\Temp\stackql.exe"
8888
89-
# - name: Run non-server tests
90-
# env:
91-
# GITHUB_ACTIONS: 'true'
92-
# run: |
93-
# python3 run_tests.py
94-
# shell: bash
89+
- name: Run non-server tests
90+
env:
91+
GITHUB_ACTIONS: 'true'
92+
run: |
93+
python3 run_tests.py
9594
9695
- name: Start StackQL server (Linux/macOS)
9796
if: matrix.os != 'windows-latest'
@@ -108,12 +107,11 @@ jobs:
108107
-ArgumentList "-v", "--pgsrv.port=5444", "srv"
109108
Start-Sleep -Seconds 5
110109
111-
# - name: Run server tests
112-
# env:
113-
# GITHUB_ACTIONS: 'true'
114-
# run: |
115-
# python3 run_server_tests.py
116-
# shell: bash
110+
- name: Run server tests
111+
env:
112+
GITHUB_ACTIONS: 'true'
113+
run: |
114+
python3 run_server_tests.py
117115
118116
- name: Stop StackQL server (Linux/macOS)
119117
if: matrix.os != 'windows-latest'

0 commit comments

Comments
 (0)