From b141d091b96cd06cb4c4d4aea81fc2f34a3ea953 Mon Sep 17 00:00:00 2001 From: Lukas Pilz Date: Mon, 5 Feb 2024 17:16:49 +0100 Subject: [PATCH] Trying to fix CI (#6) --- .github/workflows/upstream-dev-ci.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/upstream-dev-ci.yaml b/.github/workflows/upstream-dev-ci.yaml index 4160761..e718d79 100644 --- a/.github/workflows/upstream-dev-ci.yaml +++ b/.github/workflows/upstream-dev-ci.yaml @@ -38,16 +38,15 @@ jobs: create-args: >- python=${{ matrix.python-version }} - - name: Install xwrf + - name: Install wps_xr id: install run: | - python -m pip install -e . --no-deps --force-reinstall - conda list - + poetry install - name: Run Tests id: test run: | - python -m pytest + poetry run pytest --cov=wps_xr --cov-report xml tests/ || + poetry run pytest --cov=wps_xr --cov-report xml tests/ - name: Report Status if: |