Skip to content

Commit 396499c

Browse files
authored
Only check integrity before publishing (#1846)
1 parent f0a9670 commit 396499c

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ jobs:
249249

250250
# Run pytest with lax xfail because we often add tests to pydantic
251251
# which xfail on a pending release of pydantic-core
252-
- run: uv run --no-sync pytest --override-ini=xfail_strict=False
252+
- run: uv run --no-sync pytest --override-ini=xfail_strict=False -k 'not test_check_pydantic_core_version'
253253
working-directory: pydantic
254254
env:
255255
PYDANTIC_PRIVATE_ALLOW_UNHANDLED_SCHEMA_TYPES: 1
@@ -514,9 +514,6 @@ jobs:
514514

515515
- run: twine check --strict dist/*
516516

517-
- name: Test wheels integrity
518-
run: for whl in dist/*.whl; do unzip -qt "$whl"; done
519-
520517
- uses: actions/upload-artifact@v4
521518
with:
522519
name: pypi_files_${{ matrix.os }}_${{ matrix.target }}_${{ matrix.interpreter || 'all' }}_${{ matrix.manylinux }}
@@ -569,9 +566,6 @@ jobs:
569566

570567
- run: ${{ (startsWith(matrix.platform.os, 'windows') && 'dir') || 'ls -lh' }} dist/
571568

572-
- name: Test wheels integrity
573-
run: for whl in dist/*.whl; do unzip -qt "$whl"; done
574-
575569
- uses: actions/upload-artifact@v4
576570
with:
577571
name: pypi_files_${{ matrix.platform.os }}_${{ matrix.interpreter }}

0 commit comments

Comments
 (0)