Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Applying the `performance` label triggers the ASV benchmark job in
# benchmarks.yml. The old `xrspatial/**/*.py` glob matched almost every
# source file, so the benchmarks ran on nearly every PR. Limit the label to
# the modules the PR-time benchmarks actually measure (the asv `continuous`
# filter in benchmarks.yml: Slope, Proximity, Zonal, CostDistance, Focal,
# Rescale/Standardize, Diffusion, Dasymetric), plus the hot compute kernels
# those benchmarks run through (convolution.py drives Focal; geodesic.py
# drives Slope). utils.py is deliberately left out: it is shared infra
# touched by almost every PR, so including it would re-broaden the label
# back toward the original problem. Add a module here when it gains a
# benchmark in that filter or becomes a kernel the benchmarks exercise.
performance:
- changed-files:
- any-glob-to-any-file:
- 'xrspatial/*.py'
- 'xrspatial/**/*.py'
- '!xrspatial/tests/**'
- 'xrspatial/slope.py'
- 'xrspatial/proximity.py'
- 'xrspatial/zonal.py'
- 'xrspatial/cost_distance.py'
- 'xrspatial/focal.py'
- 'xrspatial/normalize.py'
- 'xrspatial/diffusion.py'
- 'xrspatial/dasymetric.py'
- 'xrspatial/convolution.py'
- 'xrspatial/geodesic.py'
Loading