Skip to content
Merged
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 tuf_conformance/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

__version__ = "2.3.0"
__version__ = "2.4.0"
Copy link
Member Author

@jku jku Nov 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we could in fact remove this version number and use tags only -- this never gets published to pypi so bumping the number is not really that useful 🤷

That said, we could embed this number in the conformance result json that is published so the report could show which version of the test suite the client is using... so maybe it is useful

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's actually a good idea 👍


# register pytest asserts before the imports happen in conftest.py
pytest.register_assert_rewrite("tuf_conformance._internal.client_runner")
Loading