From b42b5fbd86c56f1f80ed4e1a80e550bf4d6ef37c Mon Sep 17 00:00:00 2001 From: DocEast Date: Thu, 30 May 2024 15:54:30 -0400 Subject: [PATCH 1/2] Fixed safety error. --- infrastructure/uxas/tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/uxas/tox.ini b/infrastructure/uxas/tox.ini index 077b28fb9..6c0651cdf 100644 --- a/infrastructure/uxas/tox.ini +++ b/infrastructure/uxas/tox.ini @@ -29,7 +29,7 @@ deps = commands = # skipped tests relate to the use of subprocess in devel_setup bandit -r src -s B404,B603,B607 - safety check --full-report + safety check --full-report --ignore 67599 [pytest] addopts = --failed-first From f43055d9a904e6c7a89256050c5441037c98307d Mon Sep 17 00:00:00 2001 From: DocEast <67712208+DocEast@users.noreply.github.com> Date: Wed, 26 Jun 2024 15:45:43 -0400 Subject: [PATCH 2/2] Update tox.ini to remove safety check --- infrastructure/uxas/tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infrastructure/uxas/tox.ini b/infrastructure/uxas/tox.ini index 6c0651cdf..1b73bfaba 100644 --- a/infrastructure/uxas/tox.ini +++ b/infrastructure/uxas/tox.ini @@ -29,7 +29,8 @@ deps = commands = # skipped tests relate to the use of subprocess in devel_setup bandit -r src -s B404,B603,B607 - safety check --full-report --ignore 67599 + # Removed safety check (no longer used by Adacore) + # safety check --full-report --ignore 67599 [pytest] addopts = --failed-first