Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
4 changes: 0 additions & 4 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
[alias]
# Warnings create a lot of noise, we only print errors.
check-clippy = "clippy --no-deps -- --allow warnings"

# Can be safely removed once Cargo's sparse protocol (see
# https://blog.rust-lang.org/2023/03/09/Rust-1.68.0.html#cargos-sparse-protocol)
# becomes the default.
Expand Down
15 changes: 15 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[[profile.default.overrides]]
filter = 'package(graphman-server)'
priority = -1
threads-required = 'num-test-threads' # Global mutex

[[profile.default.overrides]]
filter = 'package(test-store)'
priority = -2
threads-required = 'num-test-threads' # Global mutex

[[profile.default.overrides]]
filter = 'package(graph-tests)'
priority = -3
threads-required = 'num-test-threads' # Global mutex
slow-timeout = { period = "300s", terminate-after = 4 }
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- uses: rustsec/audit-check@69366f33c96575abad1ee0dba8212993eecbe998 #v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
Loading
Loading