Skip to content

Commit

Permalink
Update tests for go1.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dnephin committed Jun 9, 2018
1 parent a57da4b commit c4204ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- run:
name: "Unit Test GO 1.10"
command: |
scripts/ci/test 1.10-alpine
scripts/ci/test 1.10.3-alpine
mkdir -p junit/gotest
docker cp \
test-$CIRCLE_BUILD_NUM:/go/src/gotest.tools/gotestsum/junit.xml \
Expand Down
2 changes: 1 addition & 1 deletion dobifiles/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

ARG GOLANG_VERSION
FROM golang:${GOLANG_VERSION:-1.10.2-alpine} as golang
FROM golang:${GOLANG_VERSION:-1.10.3-alpine} as golang
RUN apk add -U curl git bash
WORKDIR /go/src/gotest.tools/gotestsum
ENV CGO_ENABLED=0
Expand Down
6 changes: 3 additions & 3 deletions internal/junitxml/testdata/junitxml-report.golden
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<testsuites>
<testsuite tests="0" failures="0" time="0.000s" name="github.com/gotestyourself/gotestyourself/testjson/internal/badmain">
<properties>
<property name="go.version" value="go1.10.2"></property>
<property name="go.version" value="go1.10.3"></property>
</properties>
<testcase classname="." name="TestMain" time="0.000s">
<failure message="Failed" type="">sometimes main can exit 2&#xA;FAIL&#x9;github.com/gotestyourself/gotestyourself/testjson/internal/badmain&#x9;0.010s&#xA;</failure>
</testcase>
</testsuite>
<testsuite tests="18" failures="0" time="0.020s" name="github.com/gotestyourself/gotestyourself/testjson/internal/good">
<properties>
<property name="go.version" value="go1.10.2"></property>
<property name="go.version" value="go1.10.3"></property>
</properties>
<testcase classname="good" name="TestSkipped" time="0.000s">
<skipped message="=== RUN TestSkipped&#xA;--- SKIP: TestSkipped (0.00s)&#xA;&#x9;good_test.go:23: &#xA;"></skipped>
Expand All @@ -37,7 +37,7 @@
</testsuite>
<testsuite tests="28" failures="4" time="0.020s" name="github.com/gotestyourself/gotestyourself/testjson/internal/stub">
<properties>
<property name="go.version" value="go1.10.2"></property>
<property name="go.version" value="go1.10.3"></property>
</properties>
<testcase classname="stub" name="TestFailed" time="0.000s">
<failure message="Failed" type="">=== RUN TestFailed&#xA;--- FAIL: TestFailed (0.00s)&#xA;&#x9;stub_test.go:34: this failed&#xA;</failure>
Expand Down

0 comments on commit c4204ae

Please sign in to comment.