From b155be880e3b068faf0eab9f103cf36c62fe76fb Mon Sep 17 00:00:00 2001 From: Alex Tong Date: Thu, 11 Jul 2024 16:47:58 -0400 Subject: [PATCH] fix pip in code cov --- .github/workflows/test_runner.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_runner.yaml b/.github/workflows/test_runner.yaml index d37a80e..617caa3 100644 --- a/.github/workflows/test_runner.yaml +++ b/.github/workflows/test_runner.yaml @@ -57,7 +57,8 @@ jobs: - name: Install dependencies run: | - python -m pip install --upgrade pip + # Fix pip version < 24.1 due to lightning incomaptibility + python -m pip install pip==23.2.1 pip install -r runner-requirements.txt pip install pytest pip install pytest-cov[toml]