| Adding a skipped test is a regression | |
| -- p_test.go -- | |
| package p | |
| -- .commit -- | |
| Initial commit with no tests | |
| -- p_test.go -- | |
| package p | |
| import "testing" | |
| func TestP(t *testing.T) { | |
| t.SkipNow() | |
| } | |
| -- .commit -- | |
| Add skipped test | |
| -- .run_test -- | |
| # Errors | |
| Test regressions detected between initial commit (INITIAL_COMMIT_HASH) and HEAD: | |
| 1: sketch.dev.TestP: New test is skipped | |
| Please fix before proceeding. |