debug 6 #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pypi_rocrate | |
# Validate if rocrate of pypi can open and parse it | |
# https://pypi.org/project/rocrate/ | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ "3.10" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install rocrate | |
- name: validate | |
run: | | |
import os | |
import tempfile | |
from pathlib import Path | |
from zipfile import ZIP_DEFLATED | |
from zipfile import Path as ZPath | |
from zipfile import ZipFile | |
from rocrate.rocrate import ROCrate | |
from rocrate.model.entity import Entity | |
from rocrate.model.contextentity import ContextEntity | |
for root, _, files in os.walk(".", topdown=False): | |
for name in files: | |
if not name.endswith('.eln'): | |
continue | |
fileName = os.path.join(root, name) | |
print(f'Try to parse: {fileName}') | |
with ZipFile(fileName, 'r', compression=ZIP_DEFLATED) as elnFile: | |
p = ZPath(elnFile) | |
dirName = sorted(p.iterdir())[0] | |
try: | |
dirpath = Path(tempfile.mkdtemp()) | |
elnFile.extractall(dirpath) | |
temppath= dirpath.joinpath(dirName.name) | |
crate = ROCrate(temppath) | |
print('\nList content') | |
for e in crate.get_entities(): | |
print(e.id, e.type) | |
except ValueError: | |
print("**ERROR: Could not parse content\n"+traceback.format_exc()+'\n\n') | |
shell: python | |