-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #235 from ashanbrown/asb/ignore-warnings
Ensure we still rerun tests when there are warnings
- Loading branch information
Showing
5 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
=== RUN TestIgnoreWarnings | ||
--- FAIL: TestIgnoreWarnings | ||
FAIL cmd/testdata/e2e/ignore_warnings.TestIgnoreWarnings | ||
coverage: [no statements] | ||
FAIL cmd/testdata/e2e/ignore_warnings | ||
|
||
DONE 1 tests, 1 failure | ||
|
||
=== RUN TestIgnoreWarnings | ||
--- FAIL: TestIgnoreWarnings | ||
FAIL cmd/testdata/e2e/ignore_warnings.TestIgnoreWarnings (re-run 1) | ||
coverage: [no statements] | ||
FAIL cmd/testdata/e2e/ignore_warnings | ||
|
||
=== Failed | ||
=== FAIL: cmd/testdata/e2e/ignore_warnings TestIgnoreWarnings | ||
|
||
=== FAIL: cmd/testdata/e2e/ignore_warnings TestIgnoreWarnings (re-run 1) | ||
|
||
DONE 2 runs, 2 tests, 2 failures |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package ignore_warnings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package ignore_warnings | ||
|
||
import "testing" | ||
|
||
func TestIgnoreWarnings(t *testing.T) { | ||
t.Fail() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters