Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
test: run TestTestDataWithBash on linux
Browse files Browse the repository at this point in the history
Signed-off-by: Marko Kungla <[email protected]>
  • Loading branch information
mkungla committed Dec 16, 2022
1 parent 33aa310 commit e83ac86
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bexp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,10 @@ var testResources = []testResource{
// TestTestDataWithBash ensures that test data is valid
// and expecations match bash output.
func TestTestDataWithBash(t *testing.T) { //nolint: gocyclo
if runtime.GOOS != "linux" {
t.Skip()
return
}
if _, err := exec.LookPath("bash"); err != nil {
t.Log("bash not found")
return
Expand Down

0 comments on commit e83ac86

Please sign in to comment.