Skip to content
Snippets Groups Projects
Commit ef594294 authored by Cédric Moreau's avatar Cédric Moreau
Browse files

fix(#154): E2E: parsing errors must make the test fail

parent a7c628ba
No related branches found
No related tags found
No related merge requests found
Pipeline #34654 passed
......@@ -672,6 +672,9 @@ async fn main() {
if summarize.hook_errors() > 0 {
panic!("Could not run tests correctly (hook errors)");
}
if summarize.parsing_errors() > 0 {
panic!("Could not run tests correctly (parsing errors)");
}
}
fn genesis_conf_name(feature_tags: &[String], scenario_tags: &[String]) -> String {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment