Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski authored Dec 4, 2023
1 parent a714e5f commit ec111ae
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# https://github.com/scikit-hep/awkward/blob/main/.github/workflows/test.yml
# https://github.com/dask-contrib/dask-awkward/blob/main/.github/workflows/pypi-tests.yml
# https://github.com/scikit-hep/uproot5/blob/main/.github/workflows/build-test.yml
# https://github.com/CoffeaTeam/coffea/blob/master/.github/workflows/ci.yml

name: Test

on:
Expand Down Expand Up @@ -135,5 +140,29 @@ jobs:
python -m pip install -q -e '.[dev,dask]' --upgrade --upgrade-strategy eager
cd ..
- name: Test scikit-hep/awkward
run: |
cd awkward
python -m pytest -vv -rs tests
cd ..
- name: Test dask-contrib/dask-awkward
run: |
cd dask-awkward
python -m pytest -vv -rs tests
cd ..
- name: Test scikit-hep/uproot5
run: |
cd uproot5
python -m pytest -vv tests --reruns 3 --reruns-delay 30 --only-rerun "(?i)http|timeout|connection|socket"
cd ..
- name: Test CoffeaTeam/coffea
run: |
cd coffea
echo "Which Coffea tests should we run?"
cd ..
- name: See what we've got
run: python -m pip list

0 comments on commit ec111ae

Please sign in to comment.