diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 1f96a03..7b7af04 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -8,7 +8,7 @@ If you suspect your issue is a bug, please add as much context as you can using As a basic rule, if you cannot provide enough information to continue addressing the issue within 7 days, a maintainer will close it. We will, however, reopen it if you later provide the information. Thanks again. --> -**Snap version** (use `snapctl -v`): +**Snap daemon version** (use `snapteld -v`): **Environment**: - **Cloud provider or hardware configuration**: diff --git a/.pluginsync.yml b/.pluginsync.yml index 3bbec5c..df5cb61 100644 --- a/.pluginsync.yml +++ b/.pluginsync.yml @@ -1,5 +1,5 @@ # File managed by pluginsync -pluginsync_config: '0.1.8' +pluginsync_config: '0.1.9' managed_files: - .github - .github/ISSUE_TEMPLATE.md diff --git a/.travis.yml b/.travis.yml index 0d374c7..cba1a19 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ sudo: false language: go go: - 1.6.3 -- 1.7.1 +- 1.7.3 env: global: - ORG_PATH=/home/travis/gopath/src/github.com/intelsdi-x @@ -42,7 +42,7 @@ deploy: on: repo: intelsdi-x/snap-plugin-collector-nova branch: master - condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.1" + condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.3" - provider: s3 access_key_id: AKIAINMB43VSSPFZISAA secret_access_key: @@ -56,7 +56,7 @@ deploy: on: repo: intelsdi-x/snap-plugin-collector-nova tags: true - condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.1" + condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.3" - provider: releases api_key: secure: X+0r/GzYM5aLP/uNk3lnwCXPf3mDb4y1n+hxPWbwGrgiRDSVt9a3gFWiqQ1Vz0pVSSZ3MDD/MBrThSsigd6IXPIgsXezDLEu3Bsb8keTwVrCo1FmKLPUcle4jM/j4rh7Ew9HzCXtSfYHb8bx7e/3WxCIabVa8zi/QRMTIynFD+9KaNAGLu8HWwwt7Di19/amfwDT4oBLnxhZfxRGLnj71NHmPyhrRRE+8jXZIm8N6ENeEP+IEHW43lEMbKDu3I+9IcEiG7GdcqHd9qZrxhe358UUsjygqBw9bVziAIXLhpWcYvMS1sfq00YRvnyYvlZDLknm/OwStJxTcDC6dJYe/cV3nBWPVsrnjeFs9476mBpKEMQrhFEh/QQnL8o4ByDNtr3nyTxCYtrxRZvoQb11tZ4+5c5I5YF0yFl6WjFrhoS9sFrYDixPtpvKr01/grFO6xN4Uv/6AG6HsZNdrEZGEv7Tn6SIZq/ZHynJeLBC8RT+3j86BzV8pixBOTJu5q7lMRKh/lhqRteDRtGyOqUWezWC7xbi01q63D7hAWWBnHsAMxXcoC+VDg41qYex8XJi/FBbowT5bT3dqvk2ZtM6LwbnZSP8dw6sgdMpgzMKNA2W6lhA0NARlwGgDuij0TAdzHK+uMlTPs02i93KlUC7wWPpExdGuxxXZnWYVdCtkr0= @@ -66,4 +66,4 @@ deploy: on: repo: intelsdi-x/snap-plugin-collector-nova tags: true - condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.1" + condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.3" diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b98bd6a..2ee922d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,7 +34,7 @@ $ git checkout -b some-topic-branch * Open a pull request for the appropriate project. * Contributors will review your pull request, suggest changes, and merge it when it’s ready and/or offer feedback. -If you have questions feel free to contact the [maintainers](https://github.com/intelsdi-x/snap/blob/master/README.md#maintainers). +If you have questions feel free to contact the [maintainers](https://github.com/intelsdi-x/snap/blob/master/docs/MAINTAINERS.md). ## Contributing Examples The most immediately helpful way you can benefit this project is by cloning the repository, adding some further examples and submitting a pull request. diff --git a/scripts/test.sh b/scripts/test.sh index a63d7f0..b73ac2b 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -84,7 +84,8 @@ elif [[ $TEST_TYPE == "medium" ]]; then if [[ -f "${__dir}/medium.sh" ]]; then . "${__dir}/medium.sh" else - UNIT_TEST="go_test" + UNIT_TEST="go_test go_cover" + echo "mode: count" > profile.cov test_unit fi elif [[ $TEST_TYPE == "large" ]]; then