Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 3 additions & 7 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
name: Test downstream projects

# Called from tests.yml once the fast test jobs have passed, so we don't spend
# runner time on downstream projects when traitlets itself is broken.
on:
push:
branches: ["main"]
pull_request:

concurrency:
group: downstream-${{ github.ref }}
cancel-in-progress: true
workflow_call:

jobs:
ipython:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,18 @@ jobs:
python_package_manager: "uv pip"
- uses: jupyterlab/maintainer-tools/.github/actions/test-sdist@v1

# Downstream projects are slow and only meaningful if traitlets itself is
# healthy, so hold them until every fast job has finished and passed.
downstream:
needs:
- tests
- test_minimum_versions
- test_lint
- test_docs
- test_prereleases
- test_sdist
uses: ./.github/workflows/downstream.yml

check_links:
runs-on: ubuntu-latest
timeout-minutes: 10
Expand Down