Port toml-test to pure Go (#264)

* Port toml-test to pure Go

This change basically ports the toml-test examples test suite to pure
Go. This removes the snowflake test.sh required to run such tests, and
allows us to the example tests on any platform (which includes Windows
as part of the pull-request testing).

* Allow CircleCI failure for go tip
This commit is contained in:
Thomas Pelletier
2019-03-20 00:23:14 -07:00
committed by GitHub
parent 690ec00a4b
commit 405d48dc28
10 changed files with 1304 additions and 190 deletions
+1 -3
View File
@@ -83,9 +83,7 @@ some early feedback!
#### Run the tests
go-toml uses two kind of tests: unit tests and TOML example tests.
You can run both of them using ./test.sh.
You can run tests for go-toml using Go's test tool: `go test ./...`.
When creating a pull requests, all tests will be ran on Linux on a few Go
versions (Travis CI), and on Windows using the latest Go version
(AppVeyor).