-
-
Save alapidas/2fc8e698fe40b02075b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/zendev/cmd/test.py b/zendev/cmd/test.py | |
| index ed59d17..9824360 100644 | |
| --- a/zendev/cmd/test.py | |
| +++ b/zendev/cmd/test.py | |
| @@ -29,9 +29,11 @@ def build_image(args, env, resmgr=False): | |
| def zen_image_tests(args, env, product=''): | |
| env = env() | |
| + os.environ['VAR_ZENOSS']=env.var_zenoss.strpath | |
| envvars = os.environ.copy() | |
| envvars.update(env.envvars()) | |
| mounts = {envvars["SRCROOT"]: "/mnt/src", env.buildroot: "/mnt/build"} | |
| + mounts[env.var_zenoss.strpath] = "/var/zenoss" | |
| image = "zendev_test" | |
| if product == 'devimg': | |
| check_devimg() | |
| @@ -76,7 +78,7 @@ def serviced_tests(args, env, smoke=False): | |
| def test(args, env): | |
| - | |
| + | |
| rcs = [] | |
| rc = None | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment