1
0
mirror of https://github.com/beego/bee.git synced 2025-06-23 08:30:18 +00:00

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

View File

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