From 07aa869a91837d95fcb5612c65a188763ac38647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sigbj=C3=B8rn=20Skj=C3=A6ret?= Date: Wed, 13 Aug 2025 11:30:45 +0200 Subject: [PATCH] ci : add more python requirements to copilot-setup-steps (#15289) * ci : add flake8 and pyright to copilot-setup-steps.yml * add tools/server/tests/requirements.txt --- .github/workflows/copilot-setup-steps.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 14f7c5e3f..a6553187e 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -49,4 +49,5 @@ jobs: run: | python3 -m venv .venv .venv/bin/activate - pip install -r requirements/requirements-all.txt + pip install -r requirements/requirements-all.txt -r tools/server/tests/requirements.txt + pip install flake8 pyright