소스 검색

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
Sigbjørn Skjæret 5 달 전
부모
커밋
07aa869a91
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      .github/workflows/copilot-setup-steps.yml

+ 2 - 1
.github/workflows/copilot-setup-steps.yml

@@ -49,4 +49,5 @@ jobs:
         run: |
         run: |
           python3 -m venv .venv
           python3 -m venv .venv
           .venv/bin/activate
           .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