Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
792f3c1
refactor(e2): restructure `Cli` arguments into modular substructures
Alenar Jun 2, 2026
815ea86
refactor(e2e): restructure scenarios into `scenario` module and renam…
Alenar Jun 2, 2026
e45e30a
refactor(e2e): rename `assertions` module to `toolkit`
Alenar Jun 4, 2026
246ecb7
feat(e2e): introduce `ScenarioToolkit` with modular subcomponents (`C…
Alenar Jun 4, 2026
2892647
refactor(e2e): consolidate assertions into `****Toolkit` structs
Alenar Jun 5, 2026
f8f0235
refactor(e2e): promote `check.rs` to module directory for future refa…
Alenar Jun 5, 2026
586ae45
refactor(e2e): split check toolkits into subpart, one for each artifi…
Alenar Jun 5, 2026
6311d9f
refactor(e2e): unify certification and verification methods in check …
Alenar Jun 5, 2026
9957878
refactor(e2e): integrate `ScenarioToolkit` into scenarios and infrast…
Alenar Jun 5, 2026
9bce508
refactor(e2e): simplify artifact handling in check toolkits
Alenar Jun 8, 2026
6f0ad4b
refactor(e2e): move struct and utils from `toolkit/check/mod.rs` to d…
Alenar Jun 8, 2026
ba16503
refactor(e2e): rename `wait_for_artifact` to `wait_for_latest_artifac…
Alenar Jun 8, 2026
0c95e9d
refactor(e2e): fix logging message in certificate check utility
Alenar Jun 8, 2026
143c5ea
refactor(e2e): use cardano epoch length in `ScenarioToolkitContext` d…
Alenar Jun 8, 2026
5fd7459
refactor(e2e): replace hardcoded durations with context-based delay u…
Alenar Jun 8, 2026
2dbd5fc
refactor(e2e): restructure and improve scenario handling
Alenar Jun 8, 2026
65e0097
refactor(e2e): rename `wait_for_*` methods to improve readability and…
Alenar Jun 8, 2026
1193511
feat(e2e): logs command line arguments at startup
Alenar Jun 9, 2026
0e64a24
chore: bump mithril-end-to-end from `0.4.139` to `0.5.0`
Alenar Jun 9, 2026
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
1 change: 1 addition & 0 deletions .github/workflows/backward-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ jobs:
--cardano-node-version ${{ matrix.cardano_node_version }} \
--cardano-slot-length 0.25 \
--cardano-epoch-length 45.0 \
full \
Comment thread
jpraynaud marked this conversation as resolved.
--signed-entity-types ${{ inputs.signed-entity-types }}
Comment thread
Alenar marked this conversation as resolved.
EXIT_CODE=$?
if [ $EXIT_CODE -eq 0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ jobs:
run_id: ["#1"]
extra_args:
[
"--aggregate-signature-type=Concatenation --check-client-cli-snapshot-converter",
"--aggregate-signature-type=Concatenation full --check-client-cli-snapshot-converter",
]

include:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions mithril-test-lab/cardano-devnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ pool1n6sxl7cfe9j9mf6jv228nluvy3k3xdu62chqk2wfaazrsenz4jz 5.258e-4

# Running Mihtril

Mithril can be run from the E2E test with --run-only argument
Mithril can be run from the E2E test with the `run-only` command

`cargo run -p mithril-end-to-end -- -vvv --bin-directory binaries_location/ --devnet-scripts-directory=mithril-test-lab/cardano-devnet/ --run-only`
`cargo run -p mithril-end-to-end -- -vvv --bin-directory binaries_location/ --devnet-scripts-directory=mithril-test-lab/cardano-devnet/ run-only`

See more about Mithril E2E testing in mithril-end-to-end [README.md](../mithril-end-to-end/README.md)
2 changes: 1 addition & 1 deletion mithril-test-lab/mithril-end-to-end/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mithril-end-to-end"
version = "0.4.139"
version = "0.5.0"
authors = { workspace = true }
edition = { workspace = true }
documentation = { workspace = true }
Expand Down
Loading
Loading