This is an automated email from the ASF dual-hosted git repository.
kevinjqliu pushed a commit to branch kevinjqliu/fix-nightly
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/kevinjqliu/fix-nightly by this
push:
new b33abd6a uv run pytest
b33abd6a is described below
commit b33abd6a757b2952f828848e598fd8e7b5d22ce2
Author: Kevin Liu <[email protected]>
AuthorDate: Wed Jan 14 11:29:14 2026 -0800
uv run pytest
---
.github/workflows/pypi-build-artifacts.yml | 2 +-
.github/workflows/svn-build-artifacts.yml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/pypi-build-artifacts.yml
b/.github/workflows/pypi-build-artifacts.yml
index b5a6c172..a20dc2a8 100644
--- a/.github/workflows/pypi-build-artifacts.yml
+++ b/.github/workflows/pypi-build-artifacts.yml
@@ -71,7 +71,7 @@ jobs:
CIBW_ARCHS: "auto64"
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10,<3.14"
CIBW_BEFORE_TEST: "uv sync --group dev --no-install-project"
- CIBW_TEST_COMMAND: "pytest {project}/tests/avro/test_decoder.py"
+ CIBW_TEST_COMMAND: "uv run pytest
{project}/tests/avro/test_decoder.py"
# Ignore tests for pypy since not all dependencies are compiled for
it
# and would require a local rust build chain
CIBW_TEST_SKIP: "pp*"
diff --git a/.github/workflows/svn-build-artifacts.yml
b/.github/workflows/svn-build-artifacts.yml
index 02e57393..9d922497 100644
--- a/.github/workflows/svn-build-artifacts.yml
+++ b/.github/workflows/svn-build-artifacts.yml
@@ -66,7 +66,7 @@ jobs:
CIBW_ARCHS: "auto64"
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10,<3.14"
CIBW_BEFORE_TEST: "uv sync --group dev --no-install-project"
- CIBW_TEST_COMMAND: "pytest {project}/tests/avro/test_decoder.py"
+ CIBW_TEST_COMMAND: "uv run pytest
{project}/tests/avro/test_decoder.py"
# Ignore tests for pypy since not all dependencies are compiled for
it
# and would require a local rust build chain
CIBW_TEST_SKIP: "pp*"