Skip to content

Commit

Permalink
add alltests filter for backward compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed Oct 6, 2023
1 parent 31dd230 commit a4475b7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions buildkite/src/Pipeline/Filter.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ let tags: Filter -> List Tag.Type = \(filter: Filter) ->
, LongAndVeryLong = [ Tag.Type.Long, Tag.Type.VeryLong ]
, Long = [ Tag.Type.Long ]
, TearDownOnly = [ Tag.Type.TearDown ]
, AllTests = [ Tag.Type.Lint, Tag.Type.Release, Tag.Type.Test ]
} filter

let show: Filter -> Text = \(filter: Filter) ->
Expand All @@ -21,6 +22,7 @@ let show: Filter -> Text = \(filter: Filter) ->
, LongAndVeryLong = "LongAndVeryLong"
, Long = "Long"
, TearDownOnly = "TearDownOnly"
, AllTests = "AllTests"
} filter

in
Expand Down

0 comments on commit a4475b7

Please sign in to comment.