Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
88f4efb
checked for inheritance cycle, resolved inheritance chain, and apply …
asder8215 Nov 18, 2025
a518202
cargo fmted
asder8215 Nov 18, 2025
794cad9
EvalutableProfile's config option considers from inheritance chain (c…
asder8215 Nov 19, 2025
32cd7f7
cargo clippied
asder8215 Nov 19, 2025
fac1267
create a new graph that stores only nodes with edges from the previou…
asder8215 Nov 19, 2025
c14d650
cargo clippied
asder8215 Nov 19, 2025
dd91e82
cargo hakari fix
asder8215 Nov 19, 2025
28cb91e
handled the 4 different error cases that inherits settings can cause,…
asder8215 Nov 21, 2025
6331904
cargo clippied
asder8215 Nov 21, 2025
9d9e223
revert change to identifying default-miri profile in get_profile
asder8215 Nov 21, 2025
ac5d8dc
bug fix: forgot to check for >= 2 size in detecting cyclic SCCs from …
asder8215 Nov 22, 2025
90e2f86
changed the presentation of inheritance error in ConfigParseErrorKind
asder8215 Nov 22, 2025
a017269
added test cases for checking successful inheritance and inheritance …
asder8215 Nov 22, 2025
82de2e2
linting fixes
asder8215 Nov 22, 2025
b34959a
added a bit more checks to cover uncovered part mentioned by codecov
asder8215 Nov 22, 2025
24346b7
added a couple more test cases
asder8215 Nov 23, 2025
f66fe13
Update nextest-runner/src/config/core/imp.rs
asder8215 Dec 1, 2025
c08b65c
Apply suggestions from code review
asder8215 Dec 1, 2025
b17c45c
removed unnecessary comments, refactored & modularized code as per re…
asder8215 Dec 2, 2025
6a9776b
cargo clippy
asder8215 Dec 2, 2025
0a338e8
forgot to remove unnecessary comment
asder8215 Dec 8, 2025
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
9 changes: 5 additions & 4 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ nix = { version = "0.30.1", default-features = false, features = ["signal"] }
num_threads = "0.1.7"
owo-colors = "4.2.3"
pathdiff = { version = "0.2.3", features = ["camino"] }
petgraph = "0.8.3"
pin-project-lite = "0.2.16"
pretty_assertions = "1.4.1"
proptest = "1.9.0"
Expand Down
1 change: 1 addition & 0 deletions nextest-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ nextest-metadata.workspace = true
nextest-workspace-hack.workspace = true
owo-colors.workspace = true
pin-project-lite.workspace = true
petgraph.workspace = true
quick-junit.workspace = true
rand.workspace = true
regex.workspace = true
Expand Down
Loading
Loading