From 819c29b3ba08194e19ef439fdd1c7e9a6a73a1d8 Mon Sep 17 00:00:00 2001 From: Guillem Borrell Date: Mon, 22 Jul 2024 11:36:34 +0200 Subject: [PATCH] Fix CI/CD --- .woodpecker.yml | 2 ++ requirements.in | 1 + 2 files changed, 3 insertions(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index f806726..beed4e1 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -6,5 +6,7 @@ pipeline: - uv pip install --python /usr/local/bin/python3 --no-cache -r requirements.txt - uv pip install --python /usr/local/bin/python3 -e . - uv pip install --python /usr/local/bin/python3 pytest + - python3 -c "import duckdb; db = duckdb.connect(':memory:'); db.sql('install httpfs'); db.sql('install spatial')" - pytest ./test/test_user.py - pytest ./test/test_data.py + - pytest ./test/test_query.py diff --git a/requirements.in b/requirements.in index 8261e1b..4e3cad0 100644 --- a/requirements.in +++ b/requirements.in @@ -1,6 +1,7 @@ langchain langchain-community langchain-fireworks +langchain-openai openai fastapi pydantic-settings