Skip to content

Commit

Permalink
ci: add uproot@main pytest -k dask run (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis authored Aug 18, 2023
1 parent 4cbd754 commit e30ad13
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/awkward-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:

concurrency:
group: 'coverage-${{ github.head_ref || github.run_id }}'
group: 'awkward-main-${{ github.head_ref || github.run_id }}'
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.10"]
runs-on: ${{matrix.platform}}
steps:
- name: Checkout source
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/uproot-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: uproot-main

on:
push:
branches: ['main']
paths-ignore: ['**.md', 'docs/**']
pull_request:
paths-ignore: ['**.md', 'docs/**']
workflow_dispatch:

concurrency:
group: 'uproot-main-${{ github.head_ref || github.run_id }}'
cancel-in-progress: true

jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: "3.10"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install and test
run: |
python3 -m pip install pip wheel -U
python3 -m pip install -q --no-cache-dir -e .[complete,test]
cd ..
git clone https://github.com/scikit-hep/uproot5
cd uproot5
python3 -m pip install .[test,dev]
python3 -m pytest -k dask

0 comments on commit e30ad13

Please sign in to comment.