diff options
-rw-r--r-- | tox.ini | 5 | ||||
-rw-r--r-- | vagrant/Vagrantfile | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -14,10 +14,13 @@ deps = rstcheck whitelist_externals = bash commands = bash -c "find {toxinidir} -not -path {toxinidir}/.tox/\* \ + -not -path {toxinidir}/pkg/dep/\* \ + -not -path {toxinidir}/src/k8splugin/vendor/\* \ + -not -path {toxinidir}/src/github.com/\* \ -name \*.sh -type f \ # E006 check for lines longer than 79 columns -print0 | xargs -0 bashate -v -iE006" - bash -c "find {toxinidir} -not -path {toxinidir}/.tox/\* \ + bash -c "find {toxinidir}/docs \ -name \*.rst -type f -print0 | xargs -0 rstcheck --report warning" [testenv:docs] diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile index 61031bba..7ff18f06 100644 --- a/vagrant/Vagrantfile +++ b/vagrant/Vagrantfile @@ -109,7 +109,7 @@ Vagrant.configure("2") do |config| installer.vm.synced_folder '../', '/root/go/src/k8-plugin-multicloud/', type: sync_type installer.vm.provision 'shell' do |sh| sh.path = "installer.sh" - sh.args = ['-p', '-v', '-w', '/vagrant'] + sh.args = ['-p', '-v', '-w', '/root/go/src/k8-plugin-multicloud/vagrant'] end end end |