Skip to content

Commit

Permalink
freertos-libs-test: Restore all OTA PAL tests
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
AhmedIsmail02 committed Feb 6, 2024
1 parent 7bfc1d7 commit d76ded6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tools/tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit d76ded6

Please sign in to comment.