Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hughsie/pe format #69

Merged
merged 2 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Lint with flake8
run: |
pip install cbor2 lxml flake8
pip install cbor2 lxml pefile flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Test with pytest
run: |
pip install cbor2 lxml pytest
pip install cbor2 lxml pefile pytest
pytest
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,14 @@
"format_spdx.pyi",
"format_swid.pyi",
"format_uswid.pyi",
"format_pe.pyi",
"hash.pyi",
"payload.pyi",
"purl.pyi",
"evidence.pyi",
"component.pyi",
"container.pyi",
"container_utils.pyi",
"link.pyi",
"problem.pyi",
"vcs.pyi",
Expand Down
1 change: 1 addition & 0 deletions uswid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
from uswid.format_uswid import uSwidFormatUswid
from uswid.format_cyclonedx import uSwidFormatCycloneDX
from uswid.format_spdx import uSwidFormatSpdx
from uswid.format_pe import uSwidFormatPe
from uswid.vex_document import uSwidVexDocument
from uswid.vex_product import uSwidVexProduct
from uswid.vex_statement import (
Expand Down
Loading
Loading