Change cwd back to Salt's code dir

This commit is contained in:
Pedro Algarvio 2015-07-28 12:22:53 +01:00
parent e7681f7c75
commit c7b5fccb9e

View File

@ -20,7 +20,7 @@ ensure_in_syspath('../../')
# Import salt libs
from salt.utils import cloud
from integration import TMP
from integration import TMP, CODE_DIR
GPG_KEYDIR = os.path.join(TMP, 'gpg-keydir')
@ -63,6 +63,8 @@ try:
except ImportError:
HAS_KEYRING = False
os.chdir(CODE_DIR)
class CloudUtilsTestCase(TestCase):