From 58bfff30cd505eddca66b3f4207041b63ce275f0 Mon Sep 17 00:00:00 2001 From: James Frost Date: Tue, 26 Mar 2024 14:47:36 +0000 Subject: [PATCH] Run tests with normal install rather than editable one Fixes https://github.com/MetOffice/CSET/issues/356 --- .github/workflows/pull_request_checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request_checks.yml b/.github/workflows/pull_request_checks.yml index 101abf38e..c1a5d59c2 100644 --- a/.github/workflows/pull_request_checks.yml +++ b/.github/workflows/pull_request_checks.yml @@ -44,7 +44,7 @@ jobs: run: | # Install package and run pytest. echo '::group::Installing local package' - python3 -m pip install -e . + python3 -m pip install . echo '::endgroup::' pytest --verbose --cov --cov-append --cov-config=pyproject.toml mv .coverage ".coverage.${{ matrix.py-ver }}"