1
0
mirror of https://github.com/kataras/iris.git synced 2026-03-06 16:35:57 +00:00

Add notes for the new lead maintainer of the open-source iris project and align with @get-ion/ion by @hiveminded

Former-commit-id: da4f38eb9034daa49446df3ee529423b98f9b331
This commit is contained in:
kataras
2017-07-10 18:32:42 +03:00
parent 2d4c2779a7
commit 9f85b74fc9
344 changed files with 4842 additions and 5174 deletions

View File

@@ -4,22 +4,30 @@ os:
- osx
go:
- go1.8
- tip
go_import_path: github.com/kataras/iris
install:
- go get ./...
# install test dependencies
# - go get golang.org/x/tools/cmd/cover
# - go get -v github.com/axw/gocov
# - go install github.com/axw/gocov/gocov
- go get ./... # for iris-contrib/httpexpect
script:
# - gocov test | gocov report
# the result of gocov is invalid because it tests the vendor too,
# which its tests are removed to reduce the dl size.
# When I'll push my internal tests to github I'll do it
# to do the test coverage all folders except vendor.
# For now keep it commented.
# - cd ./_examples
# - go get ./...
# - go test -v -cover ./...
# - cd ./...
- go test -v -cover ./...
after_script:
# examples
- cd ./_examples
- go get ./...
- go test -v -cover ./...
# cache examples
- cd ../cache/_examples
- go get ./...
- go test -v -cover ./...
# sessions examples
- cd ../../sessions/_examples
- go get ./...
- go test -v -cover ./...
# websocket examples
- cd ../../websocket/_examples
- go get ./...
- go test -v -cover ./...
# typescript examples
- cd ../../typescript/_examples
- go get ./...
- go test -v -cover ./...