From 70817aae96ada055effde9225066291d1c4dd9e7 Mon Sep 17 00:00:00 2001 From: Hans Vanrompay Date: Fri, 27 Sep 2024 14:41:31 +0200 Subject: [PATCH] fix --- .github/workflows/unit_test.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 05dcd13..8c0caca 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -27,13 +27,11 @@ jobs: python-version: ${{ matrix.python-version }} # Use Python version from the matrix cache: 'pip' - - name: Install Hatchling (build system) - run: | - pip install hatchling - - name: Install dependencies and pytest run: | - pip install .[dev] pytest # This installs both dev dependencies and pytest explicitly + python -m pip install --upgrade pip + python -m pip install pytest + python -m pip install .[dev] - name: Run Unit Tests run: |