blob: dba6df26888e3fedfbe5b1ce97f5fc6a42c92770 [file] [log] [blame]
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.