mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
20 lines
353 B
Bash
20 lines
353 B
Bash
|
|
@test "skips clear" {
|
|
bake -b cache.Bakefile --clear-skips
|
|
}
|
|
|
|
@test "cache runs" {
|
|
run bake -b cache.Bakefile task
|
|
[[ $output != *Skipping* ]]
|
|
}
|
|
|
|
@test "cache skips" {
|
|
run bake -b cache.Bakefile task
|
|
[[ $output == *Skipping* ]]
|
|
}
|
|
|
|
@test "skip skips" {
|
|
run bake -b cache.Bakefile --no-deps task
|
|
[[ $output != *Skipping* ]]
|
|
}
|