From 6b8c4a7849310111014e246bfb8934457a21e1df Mon Sep 17 00:00:00 2001 From: jahatef Date: Thu, 6 Jun 2024 19:18:28 +0000 Subject: [PATCH] fix python version and pytest install --- .github/workflows/pull_request.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index a2b1a2fc2..2b0531a98 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: "3.10.14" cache: "pip" cache-dependency-path: "**/requirements*.txt" # Need the right version of clang-format @@ -45,5 +45,7 @@ jobs: - uses: actions/checkout@v2 - name: prepare data run: python prepare_data.py + - name: install pytest + run: pip install pytest - name: Run Tests run: pytest --forked tests