Skip to content

Commit c7bd95a

Browse files
committed
Re-enable smoke tests
1 parent 3ad8409 commit c7bd95a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build_linux_arm64_wheels-gh.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
run: |
124124
python3 -m pip install dist/*.whl
125125
python3 -m pip install pandas pyarrow psutil
126-
# python3 -c "import chdb; res = chdb.query('select 1112222222,555', 'CSV'); print(res)"
126+
python3 -c "import chdb; res = chdb.query('select 1112222222,555', 'CSV'); print(res)"
127127
make test
128128
continue-on-error: false
129129
- name: Upload wheels to release

.github/workflows/build_linux_x86_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
run: |
123123
python3 -m pip install dist/*.whl
124124
python3 -m pip install pandas pyarrow psutil
125-
# python3 -c "import chdb; res = chdb.query('select 1112222222,555', 'CSV'); print(res)"
125+
python3 -c "import chdb; res = chdb.query('select 1112222222,555', 'CSV'); print(res)"
126126
make test
127127
continue-on-error: false
128128
- name: Upload wheels to release

chdb/test_smoke.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ cd ${PROJ_DIR}
2121
python3 -c \
2222
"import chdb; res = chdb._chdb.query('select version()', 'CSV'); print(res)"
2323

24-
# python3 -c \
25-
# "import chdb; res = chdb.query('select version()', 'Debug'); print(res.bytes())"
24+
python3 -c \
25+
"import chdb; res = chdb.query('select version()', 'Debug'); print(res.bytes())"
2626

2727
# test json function
28-
# python3 -c \
29-
# "import chdb; res = chdb.query('select isValidJSON(\'not a json\')', 'CSV'); print(res)"
28+
python3 -c \
29+
"import chdb; res = chdb.query('select isValidJSON(\'not a json\')', 'CSV'); print(res)"
3030

3131
# test cli
32-
# python3 -m chdb "select 1112222222,555" Dataframe
32+
python3 -m chdb "select 1112222222,555" Dataframe

0 commit comments

Comments
 (0)