From 2549cd393645b49170e339de1bd72cedf067c126 Mon Sep 17 00:00:00 2001 From: Bjarke Madsen <bjarke@nordu.net> Date: Mon, 19 May 2025 15:48:25 +0200 Subject: [PATCH] add SBOM --- .gitignore | 1 + tox.ini | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index e2a3e93..01699bf 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ htmlcov dist docs/build .coverage* +bom.json # logs *.log diff --git a/tox.ini b/tox.ini index 6856236..65321cb 100644 --- a/tox.ini +++ b/tox.ini @@ -13,6 +13,7 @@ deps = pytest-xdist pytest-cov flake8 + cyclonedx-py -r requirements.txt commands = @@ -20,3 +21,4 @@ commands = pytest -n auto --cov brian_dashboard_manager --cov-fail-under=75 --cov-report html --cov-report xml --cov-report term -p no:checkdocs flake8 sphinx-build -M html docs/source docs/build + cyclonedx-py environment --output-format json -o bom.json -- GitLab