Skip to content
Snippets Groups Projects
Commit f679cd24 authored by Cédric Moreau's avatar Cédric Moreau Committed by Hugo Trentesaux
Browse files

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

parent 6cf445b5
No related branches found
No related tags found
1 merge request!210Resolve "Tests E2E fails but CI pass"
...@@ -672,6 +672,9 @@ async fn main() { ...@@ -672,6 +672,9 @@ async fn main() {
if summarize.hook_errors() > 0 { if summarize.hook_errors() > 0 {
panic!("Could not run tests correctly (hook errors)"); 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 { 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