From d0fdb2cccb02d261a6b2215ae8f9f22c552e65d4 Mon Sep 17 00:00:00 2001 From: Christian Ledermann Date: Fri, 27 Oct 2023 17:17:52 +0100 Subject: [PATCH] fix typo --- .github/workflows/run-all-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-all-tests.yml b/.github/workflows/run-all-tests.yml index 6d730146..d99ea34b 100644 --- a/.github/workflows/run-all-tests.yml +++ b/.github/workflows/run-all-tests.yml @@ -20,7 +20,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install -e ".[testing]" + python -m pip install -e ".[tests]" - name: Test with pytest run: | pytest tests --cov=tests --cov=pygeoif --cov-report=xml @@ -77,7 +77,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install pytest + python -m pip install -e ".[tests]" - name: Test with pytest run: | pytest tests