diff --git a/.github/workflows/gh-ci.yaml b/.github/workflows/gh-ci.yaml index b0fc51d..35013b1 100644 --- a/.github/workflows/gh-ci.yaml +++ b/.github/workflows/gh-ci.yaml @@ -122,12 +122,22 @@ jobs: exit 1 fi - - name: Test Pytest environement + - name: Test Pytest environement v0 + if: ${{ matrix.image_dir == 'coffea-basev0' }} + env: + tag: ${{ steps.tags.outputs.tag }} + run: | + docker run --rm -v ${{ github.workspace }}:/tmp/workspace ${tag} \ + sh -c "pip install -U pytest && cd tmp/workspace && pytest -m coffeav0" + + - name: Test Pytest environement CalVer + if: ${{ matrix.image_dir != 'coffea-basev0' }} env: tag: ${{ steps.tags.outputs.tag }} run: | docker run --rm -v ${{ github.workspace }}:/tmp/workspace ${tag} \ - sh -c "pip install -U pytest && cd tmp/workspace && pytest" + sh -c "pip install -U pytest && cd tmp/workspace && pytest -m coffeacalver" + - name: Build and push v0 if: ${{ matrix.image_dir != 'coffea-basev0' }}