()
| 32 | |
| 33 | |
| 34 | def GetPkgPath(): |
| 35 | if "PKGS_DIR" in os.environ: |
| 36 | return os.environ["PKGS_DIR"] |
| 37 | elif "PKGS_ROOT" in os.environ: |
| 38 | return os.environ["PKGS_ROOT"] |
| 39 | elif GetEnvPath(): |
| 40 | return os.path.join(GetEnvPath(), "packages") |
| 41 | else: |
| 42 | return None |
| 43 | |
| 44 | def GetSDKPackagePath(): |
| 45 | env = GetEnvPath() |
no test coverage detected