From 2013a2eddaeffd495ae2bc2ed30fde2a0143c1ec Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 24 Dec 2025 12:04:30 +0100 Subject: [PATCH] chore: add recognition to the original tests author --- .github/workflows/ci.yml | 1 - tests/test_pip_audit.py | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f596da117..84b9f9afb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,6 @@ jobs: uv pip install -e ft_client/ uv pip install -e . - - name: Check for version alignment run: | python build_helpers/freqtrade_client_version_align.py diff --git a/tests/test_pip_audit.py b/tests/test_pip_audit.py index 29eaca607..ab9017b89 100644 --- a/tests/test_pip_audit.py +++ b/tests/test_pip_audit.py @@ -1,3 +1,9 @@ +""" +Run pip audit to check for known security vulnerabilities in installed packages. +Original Idea and base for this implementation by Michael Kennedy's blog: +https://mkennedy.codes/posts/python-supply-chain-security-made-easy/ +""" + import subprocess import sys from pathlib import Path