diff --git a/.github/workflows/schedule-dependencies.yml b/.github/workflows/schedule-dependencies.yml index a6df4129..17830d26 100644 --- a/.github/workflows/schedule-dependencies.yml +++ b/.github/workflows/schedule-dependencies.yml @@ -22,11 +22,13 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install dependencies + if: always() run: | python -m pip install wheel python -m pip install ${{ matrix.pre-release-dependencies }} -e ".[test]" python -m pip freeze - name: Test with pytest + if: always() run: pytest -n auto --disable-warnings --cov=sklego -m "not cvxpy and not formulaic and not umap" cron-extra: @@ -45,9 +47,11 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install dependencies + if: always() run: | python -m pip install wheel python -m pip install ${{ matrix.pre-release-dependencies }} -e ".[test,${{ matrix.extra }}]" python -m pip freeze - name: Test with pytest + if: always() run: pytest -n auto --disable-warnings --cov=sklego -m "${{ matrix.extra }}"