Skip to content

Commit 9886cb2

Browse files
integration tests: sync suite between GHA and entrypoint
1 parent 868e5d8 commit 9886cb2

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,17 @@ jobs:
3131
"tests/search_test.py",
3232
"tests/file_test.py",
3333
"tests/dedupe_test.py",
34+
"tests/announcement_banner_test.py",
35+
"tests/close_old_findings_dedupe_test.py",
36+
"tests/close_old_findings_test.py",
37+
"tests/false_positive_history_test.py",
3438
"tests/check_various_pages.py",
39+
# "tests/import_scanner_test.py",
40+
# "tests/zap.py",
3541
"tests/notifications_test.py",
3642
"tests/tool_config.py",
3743
"openapi-validatator",
44+
3845
]
3946
os: [alpine, debian]
4047
fail-fast: false

docker/entrypoint-integration-tests.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,14 @@ else
288288
# echo "Error: Zap integration test failed"; exit 1
289289
# fi
290290

291+
test="Notifications tests"
292+
echo "Running: $test"
293+
if python3 tests/notifications_test.py ; then
294+
success "$test"
295+
else
296+
fail "$test"
297+
fi
298+
291299
test="Tool Config integration tests"
292300
echo "Running: $test"
293301
if python3 tests/tool_config.py ; then

0 commit comments

Comments
 (0)