Skip to content
Closed
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
13 changes: 13 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"schemas/"
],
"scripts": {
"build": "node --test",
"test": "node --test"
},
"publishConfig": {
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ dependencies = []

[project.optional-dependencies]
validate = ["jsonschema>=4.0"]
dev = ["jsonschema>=4.0", "referencing>=0.30", "pytest>=7.0"]

[project.urls]
Homepage = "https://github.com/WasmAgent/wasmagent-protocol"
Expand Down
13 changes: 13 additions & 0 deletions tests/test_conformance.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
"""Pytest entry-point for the conformance harness.

conformance.py is a standalone script (exits 0/1). This thin wrapper exposes
it as a pytest test so that ``pytest tests/ -x -q`` discovers and runs it
without duplicating the logic.
"""
from __future__ import annotations

from conformance import main


def test_conformance() -> None:
assert main() == 0, "conformance harness reported errors"
Loading