diff --git a/mod_test/controllers.py b/mod_test/controllers.py index 67de3a4d..d5e91c9e 100644 --- a/mod_test/controllers.py +++ b/mod_test/controllers.py @@ -99,7 +99,7 @@ def get_test_results(test) -> List[Dict[str, Any]]: # We need to check if the regression test had any file that shouldn't have been ignored. outputs = RegressionTestOutput.query.filter(and_( RegressionTestOutput.regression_id == category_test['test'].id, - RegressionTestOutput.ignore is False + RegressionTestOutput.ignore.is_(False) )).all() got = None if len(outputs) > 0: diff --git a/templates/test/by_id.html b/templates/test/by_id.html index 92aa37e7..d3964cb6 100644 --- a/templates/test/by_id.html +++ b/templates/test/by_id.html @@ -153,6 +153,8 @@

Fail {%- endif %}