1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 06:37:46 +00:00

Update toolkit.nu per removal of stdlib-candidate (#1046)

stdlib-candidate was removed in #1042 but test script still refer on it.

The concensus is to
[remove](https://github.com/nushell/nu_scripts/pull/1044#discussion_r1954636683)
the test case.
This commit is contained in:
Nguyễn Hồng Quân 2025-02-14 09:53:09 +07:00 committed by GitHub
parent 90eb75d97f
commit a6c41303bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,13 +32,6 @@ export def "check pr" [
{ test } { test }
] | par-each { |task| $files | do $task } # TODO: buffer output ] | par-each { |task| $files | do $task } # TODO: buffer output
} }
test-stdlib-candidate
}
export def test-stdlib-candidate [] {
use stdlib-candidate/testing.nu
testing run-tests --allow-no-tests --path stdlib-candidate
} }
# View subcommands. # View subcommands.
@ -78,14 +71,13 @@ export def "lint ide-check" []: path -> int {
let file = $in let file = $in
let stub = $env.STUB_IDE_CHECK? | default false | into bool let stub = $env.STUB_IDE_CHECK? | default false | into bool
const current_path = (path self) const current_path = (path self)
let candidate_path = $current_path | path dirname | path join "stdlib-candidate"
let diagnostics = if $stub { let diagnostics = if $stub {
do { nu -I $candidate_path --no-config-file --commands $"use '($file)'" } do { nu --no-config-file --commands $"use '($file)'" }
| complete | complete
| [[severity message]; [$in.exit_code $in.stderr]] | [[severity message]; [$in.exit_code $in.stderr]]
| where severity != 0 | where severity != 0
} else { } else {
nu -I $candidate_path --ide-check 10 $file nu --ide-check 10 $file
| $"[($in)]" | $"[($in)]"
| from nuon | from nuon
| where type == diagnostic | where type == diagnostic