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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
with:
components: rustfmt, clippy

- uses: Swatinem/rust-cache@v2.9.1
- uses: Swatinem/rust-cache@v2

- uses: astral-sh/setup-uv@v7

- name: Install Python dependencies
run: uv sync --group dev

- name: Set up pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v6
with:
version: 10

Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2.9.1
- uses: Swatinem/rust-cache@v2
with:
save-if: false

Expand All @@ -83,7 +83,7 @@ jobs:
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2.9.1
- uses: Swatinem/rust-cache@v2

- uses: astral-sh/setup-uv@v7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v6

- name: Set up pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v6
with:
version: 10

Expand Down
5 changes: 4 additions & 1 deletion tests/python/execution/test_profiling.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
from dagron import DAG, DAGExecutor, NodeProfile, ProfileReport, profile_execution


def _delayed(value: str, seconds: float = 0.01) -> str:
def _delayed(value: str, seconds: float = 0.05) -> str:
# Windows' time.monotonic() has ~16 ms granularity; use 50 ms so every
# node's measured duration is non-zero and the critical path includes
# all of them, not just the ones whose sleep happened to straddle a tick.
time.sleep(seconds)
return value

Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading