Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Pull Test Data
run: git lfs pull
- name: Run tests
run: nox -t ${{ matrix.nox-tag }} --forcecolor -- --cov=onnx_ir --cov-report=xml --cov-append --cov-branch -n=auto --junitxml junit.xml
run: nox -t ${{ matrix.nox-tag }} --forcecolor -- --cov=src/onnx_ir --cov-report=xml --cov-append --cov-branch -n=auto --junitxml junit.xml
- name: Upload coverage to Codecov
if: always()
uses: codecov/codecov-action@v5
Expand Down
1 change: 1 addition & 0 deletions REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ path = [
"**/*.ipynb",
"**/*.md",
"**/*.rst",
"**/*.textproto",
"**/*.toml",
"**/*.yml",
"CODEOWNERS",
Expand Down
5 changes: 5 additions & 0 deletions testdata/e2e_models/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Models for end-to-end testing

The models under this directory are generated with [tools/create_test_model.py](/tools/create_test_model.py). ONNX models have all initializer data stripped and save as the textproto format.

If a particular test requires the initializer data to be present, it should create random weights based on the tensor dtype/shape and add them to the `TensorProto`s in `model.graph.initializer`.
Loading