21 lines
466 B
YAML
21 lines
466 B
YAML
---
|
|
version: '3'
|
|
|
|
tasks:
|
|
ci:
|
|
deps:
|
|
- :install:go:gotestsum
|
|
cmds:
|
|
- gotestsum --junitfile report.xml --format testname
|
|
|
|
convey:
|
|
deps:
|
|
- :install:go:goconvey
|
|
desc: Run tests through the browser with GoConvey
|
|
summary: |
|
|
# Open Go Testing Web UI
|
|
|
|
[GoConvey](http://goconvey.co/) allows you to write tests in your IDE
|
|
and get live updates in a browser window while writing the tests.
|
|
cmds:
|
|
- goconvey
|