From f21c106ad53917988c9b51a535b2aaf8cd04b356 Mon Sep 17 00:00:00 2001 From: ACornuIGN Date: Fri, 22 Dec 2023 17:00:06 +0100 Subject: [PATCH] fix: debug workflows test --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d9f453b..58018a1c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,9 +17,9 @@ jobs: uses: actions/checkout@v4 - name: Install environment - uses: mamba-org/setup-micromamba@v1.4.3 - with: - environment-file: environment.yml + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt - name: Run tests with pytest run: python3 -m pytest -s ./test -v