
Replace the "manila-tempest-dsvm-generic-scenario-custom-image" job with a native Zuulv3 style job that does not use the deprecated devstack-gate project. This new test job runs integration NFS and CIFS tests against a newly created test image that is used as the service instance image, as well as the client image. Change-Id: I3d2345e80f3bc18558d4cc6cc58108ff63119460 Signed-off-by: Goutham Pacha Ravi <gouthampravi@gmail.com>
9 lines
276 B
Bash
Executable File
9 lines
276 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
find ./ -not -wholename \*.tox/\* -and \
|
|
\( -name \*.sh -or -wholename \*.d/\* -and \
|
|
-not -name \*.md -and -not -name \*.rst -and \
|
|
-not -name \*.py -and -not -name \*.conf \) \
|
|
-not -name \*.yaml \
|
|
-print0 | xargs -0 bashate -v -i E006
|