From f92861fac48d07fa65e537f6faa4bc3b0826f6ae Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Tue, 10 Sep 2024 11:58:23 -0500 Subject: [PATCH] chore: update pip firsT --- .github/workflows/test.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index bb21024..f57f0f0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -22,7 +22,9 @@ jobs: python-version: "3.10" - name: Install Dependencies - run: pip install .[lint] + run: | + python -m pip install --upgrade pip + pip install .[lint] - name: Run Black run: black --check . @@ -48,7 +50,9 @@ jobs: python-version: "3.10" - name: Install Dependencies - run: pip install .[lint,test] # Might need test deps + run: | + python -m pip install --upgrade pip + pip install .[lint,test] # Might need test deps - name: Run MyPy run: mypy . @@ -70,7 +74,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Dependencies - run: pip install .[test] + run: | + python -m pip install --upgrade pip + pip install .[test] - name: Run Tests run: pytest -m "not fuzzing" -n 0 -s --cov