Skip to content

Commit 5c9495b

Browse files
committed
add duckdb test
1 parent 0352a0b commit 5c9495b

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
python -m pip install --upgrade pip
2020
pip install pandas
2121
pip install astropy
22+
pip install duckdb
2223
pip install pytest-cov
2324
pip install coveralls
2425
- name: Install sqlutilpy

tests/test_duckdb.py

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import pytest
2+
import os
3+
import sqlutilpy as sqlutil
4+
import duckdb
5+
6+
7+
@pytest.fixture()
8+
def setup():
9+
fname = 'duck.db'
10+
kw = dict(db=fname, driver='duckdb')
11+
conn = duckdb.connect(fname)
12+
cur = conn.cursor()
13+
cur.execute('create table tmp (a int, b double precision)')
14+
cur.execute('insert into tmp values(1,2), (2,3), (3,4), (4,5);')
15+
conn.commit()
16+
yield kw
17+
os.unlink(fname)
18+
19+
20+
def test_simple(setup):
21+
a, b = sqlutil.get('select a,b from tmp', **setup)
22+
assert (len(a) == 4)
23+
24+
25+
def test_preamb(setup):
26+
a, b = sqlutil.get('select a,b from tmp', preamb='select 1', **setup)
27+
assert (len(a) == 4)
28+
29+
30+
def test_empty(setup):
31+
a, b = sqlutil.get('select a,b from tmp where a<0', **setup)
32+
assert (len(a) == 0)

0 commit comments

Comments
 (0)