File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -344,12 +344,16 @@ jobs:
344
344
name : pypi_files
345
345
path : dist
346
346
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`
353
357
354
358
release :
355
359
needs : [build, build-wasm-emscripten]
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ def test_version():
18
18
19
19
20
20
def test_build_profile ():
21
- assert isinstance (build_profile , str )
22
21
assert build_profile in ('debug' , 'release' )
23
22
24
23
You can’t perform that action at this time.
0 commit comments