From d76ded630aa84d5c360e4aa6269b3856878f1d5a Mon Sep 17 00:00:00 2001 From: Ahmed Ismail Date: Mon, 15 Jan 2024 16:04:25 +0000 Subject: [PATCH] freertos-libs-test: Restore all OTA PAL tests The `otaPal_CloseFile_ValidSignature` test case was previously removed as it kept failing. Restore it as it has been fixed. Signed-off-by: Ahmed Ismail --- tools/tests/test_integration.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tools/tests/test_integration.py b/tools/tests/test_integration.py index aa1f6ff0..ed182091 100755 --- a/tools/tests/test_integration.py +++ b/tools/tests/test_integration.py @@ -7,9 +7,13 @@ from aws_test_util import Flags, create_aws_resources, cleanup_aws_resources import re -Cases = "Full_OTA_PAL, otaPal_CloseFile_ValidSignature" -Output = "Test cannot succeed as the filename is hardcoded in test" -ignore_tests = {Cases: Output} +# If you have failing test cases to ignore, +# specify the test suites and test cases as shown below +# afterwards remove the empty ignore_tests dictionary. +# Cases = "TestSuite1, TestCase_1, TestSuite2, TestCase_2, TestSuiten, TestCase_n" +# Output = "Reason to ignore" +# ignore_tests = {Cases: Output} +ignore_tests = {} @fixture(scope="function")