diff options
| -rw-r--r-- | changes/consider_osx_tempdirs | 1 | ||||
| -rw-r--r-- | src/leap/common/testing/basetest.py | 3 | 
2 files changed, 3 insertions, 1 deletions
| diff --git a/changes/consider_osx_tempdirs b/changes/consider_osx_tempdirs new file mode 100644 index 0000000..5cc20fb --- /dev/null +++ b/changes/consider_osx_tempdirs @@ -0,0 +1 @@ +  o Add OSX temp directories to the basetests class.
\ No newline at end of file diff --git a/src/leap/common/testing/basetest.py b/src/leap/common/testing/basetest.py index 8890bf9..54826d5 100644 --- a/src/leap/common/testing/basetest.py +++ b/src/leap/common/testing/basetest.py @@ -68,7 +68,8 @@ class BaseLeapTest(unittest.TestCase):          # safety check! please do not wipe my home...          # XXX needs to adapt to non-linuces          leap_assert( -            cls.tempdir.startswith('/tmp/leap_tests-'), +            cls.tempdir.startswith('/tmp/leap_tests-') or +            cls.tempdir.startswith('/var/folder'),              "beware! tried to remove a dir which does not "              "live in temporal folder!")          shutil.rmtree(cls.tempdir) | 
