test: Improve test depth

Make sure we're catching everything, including new, deeper code.
This commit is contained in:
James Shubin
2019-03-12 15:50:30 -04:00
parent 58961d23bb
commit 2bf43eae24
3 changed files with 4 additions and 4 deletions

View File

@@ -75,7 +75,7 @@ for pkg in `go list -e ./... | grep -v "^${base}/vendor/" | grep -v "^${base}/ex
done
# loop through individual *.go files
for file in `find . -maxdepth 9 -type f -name '*.go' -not -path './old/*' -not -path './tmp/*' -not -path 'vendor/*'`; do
for file in `find . -maxdepth 9 -type f -name '*.go' -not -path './old/*' -not -path './tmp/*' -not -path './vendor/*'`; do
#if [[ $file == "./vendor/"* ]]; then # skip files that start with...
# continue
#fi

View File

@@ -39,7 +39,7 @@ function parser-conflicts() {
}
# loop through individual *.y files
for file in `find . -maxdepth 9 -type f -name '*.y' -not -path './old/*' -not -path './tmp/*' -not -path 'vendor/*'`; do
for file in `find . -maxdepth 9 -type f -name '*.y' -not -path './old/*' -not -path './tmp/*' -not -path './vendor/*'`; do
run-test parser-indentation "$file"
run-test parser-conflicts "$file"
done