Skip to content
Closed
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
7 changes: 7 additions & 0 deletions tmt/tests/booted/test-loader-entries-source.nu
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@
use std assert
use tap.nu

let is_bad_version = ostree --version | lines | any {|l| $l | str contains "2026.2" }

if $is_bad_version {
print "Found Ostree v2026.2, skipping test"
exit 0
}

def parse_cmdline [] {
open /proc/cmdline | str trim | split row " "
}
Expand Down
Loading