From 1bcdf9d8eb1b8ca9da594684980f774c2ff04e0c Mon Sep 17 00:00:00 2001 From: Paddy Mullen Date: Sat, 28 Dec 2024 11:57:48 -0500 Subject: [PATCH] adding pyarrow to dependencies, only doing unit tests --- .github/workflows/ci.yml | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7007bac..1ae07687 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: with: version: "0.5.x" - name: Run tests - run: uv run --with pytest-cov pytest ./tests --color=yes --cov anywidget --cov-report xml + run: uv run --with pytest-cov pytest ./tests/unit --color=yes --cov anywidget --cov-report xml env: UV_PYTHON: ${{ matrix.python-version }} - uses: codecov/codecov-action@v5 diff --git a/pyproject.toml b/pyproject.toml index 89b91afb..24560442 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,8 @@ dev-dependencies = [ "polars>=1.5.0", "pandas>=1.3.5", "geopandas<1.0", - "playwright" + "playwright", + "pyarrow", ]