Skip to content

Commit f42d469

Browse files
committed
tweak inspect-pypi-assets
1 parent 69e5b00 commit f42d469

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -344,12 +344,16 @@ jobs:
344344
name: pypi_files
345345
path: dist
346346

347-
- run: ls -lh dist/
348-
- run: echo "`ls dist | wc -l` files"
349-
- run: mkdir sdist-files
350-
- run: tar -xvf dist/*.tar.gz -C sdist-files
351-
- run: tree -a sdist-files
352-
- run: python -m zipfile --list `ls dist/*x86_64.whl | head -n 1`
347+
- run: |
348+
ls -lh dist/
349+
echo "`ls dist | wc -l` files"
350+
- run: |
351+
mkdir sdist-files
352+
tar -xvf dist/*.tar.gz -C sdist-files
353+
tree -a sdist-files
354+
- run: |
355+
ls dist/*cp310-manylinux*x86_64.whl | head -n 1
356+
python -m zipfile --list `ls dist/*cp310-manylinux*x86_64.whl | head -n 1`
353357
354358
release:
355359
needs: [build, build-wasm-emscripten]

tests/test_misc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ def test_version():
1818

1919

2020
def test_build_profile():
21-
assert isinstance(build_profile, str)
2221
assert build_profile in ('debug', 'release')
2322

2423

0 commit comments

Comments
 (0)