1
0
mirror of https://github.com/beego/bee.git synced 2025-07-01 22:20:17 +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 // 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 {