Skip to content

Commit 01f5690

Browse files
committed
lets try uv
1 parent e9fd5c4 commit 01f5690

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/pypi-build-artifacts.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ jobs:
7070
# Ignore 32 bit architectures
7171
CIBW_ARCHS: "auto64"
7272
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10,<3.14"
73-
CIBW_TEST_REQUIRES: "pytest==7.4.2 moto==5.0.1 pytest-lazy-fixture==0.6.3"
73+
# Install test dependencies from pyproject.toml dependency-groups
74+
CIBW_BEFORE_TEST: "uv pip install --group dev"
7475
CIBW_TEST_COMMAND: "pytest {project}/tests/avro/test_decoder.py"
7576
# Ignore tests for pypy since not all dependencies are compiled for it
7677
# and would require a local rust build chain

.github/workflows/svn-build-artifacts.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ jobs:
6565
# Ignore 32 bit architectures
6666
CIBW_ARCHS: "auto64"
6767
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10,<3.14"
68-
CIBW_TEST_REQUIRES: "pytest==7.4.2 moto==5.0.1 pytest-lazy-fixture==0.6.3"
68+
# Install test dependencies from pyproject.toml dependency-groups
69+
CIBW_BEFORE_TEST: "uv pip install --group dev"
6970
CIBW_TEST_COMMAND: "pytest {project}/tests/avro/test_decoder.py"
7071
# Ignore tests for pypy since not all dependencies are compiled for it
7172
# and would require a local rust build chain

0 commit comments

Comments
 (0)