Skip to content

Commit

Permalink
overload short for use with windows testing
Browse files Browse the repository at this point in the history
  • Loading branch information
drewwells committed Dec 22, 2015
1 parent 8b0116f commit e42c971
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ dependencies:
- go test -i -race $(go list -f '{{if len .TestGoFiles}}{{.ImportPath}}{{end}}' ./... | grep -v /vendor/)
test:
override:
- go test -race $(go list -f '{{if len .TestGoFiles}}{{.ImportPath}}{{end}}' ./... | grep -v /vendor/)
- go test -short -race $(go list -f '{{if len .TestGoFiles}}{{.ImportPath}}{{end}}' ./... | grep -v /vendor/)
5 changes: 5 additions & 0 deletions context_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ div {
}

func TestLibsassError(t *testing.T) {

if testing.Short() {
t.Skip("Skip error testing on windows")
}

in := bytes.NewBufferString(`div {
color: red(blue, purple);
}`)
Expand Down

0 comments on commit e42c971

Please sign in to comment.