Merge pull request #578 from tvanriper/patch-1

Fix for projects with 'tests' in path
This commit is contained in:
Faissal Elamraoui 2019-02-12 14:36:12 +01:00 committed by GitHub
commit 36a17c40b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ func ParsePackagesFromDir(dirpath string) {
// all 'tests' folders and dot folders wihin dirpath // all 'tests' folders and dot folders wihin dirpath
d, _ := filepath.Rel(dirpath, fpath) d, _ := filepath.Rel(dirpath, fpath)
if !(d == "vendor" || strings.HasPrefix(d, "vendor"+string(os.PathSeparator))) && if !(d == "vendor" || strings.HasPrefix(d, "vendor"+string(os.PathSeparator))) &&
!strings.Contains(fpath, "tests") && !strings.Contains(d, "tests") &&
!(d[0] == '.') { !(d[0] == '.') {
err = parsePackageFromDir(fpath) err = parsePackageFromDir(fpath)
if err != nil { if err != nil {