From e6ee3120407d260010e8b9e17bfb9b2fe6e54d2c Mon Sep 17 00:00:00 2001
From: Inso <insomniak.fr@gmail.com>
Date: Thu, 14 Jan 2016 22:08:21 +0100
Subject: [PATCH] Protect tests + show paths

---
 ci/appveyor/build.cmd | 2 +-
 ci/appveyor/tests.cmd | 4 +++-
 setup.py              | 6 ++++++
 3 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/ci/appveyor/build.cmd b/ci/appveyor/build.cmd
index a0a08f12..a1b9b313 100644
--- a/ci/appveyor/build.cmd
+++ b/ci/appveyor/build.cmd
@@ -3,7 +3,7 @@
 call activate test-environment
 
 echo "%PATH%"
-echo "%QT_QPA_PLATFORM_PLUGIN_PATH%"
+echo "%QT_PLUGIN_PATH%"
 python -V
 call pyuic5 --version
 
diff --git a/ci/appveyor/tests.cmd b/ci/appveyor/tests.cmd
index a2029cc5..dc986528 100644
--- a/ci/appveyor/tests.cmd
+++ b/ci/appveyor/tests.cmd
@@ -3,7 +3,7 @@
 call activate test-environment
 
 echo "%PATH%"
-echo "%QT_QPA_PLATFORM_PLUGIN_PATH%"
+echo "%QT_PLUGIN_PATH%"
 python -V
 call pyuic5 --version
 
@@ -11,6 +11,8 @@ pyrcc5 -version
 
 lrelease -version
 
+echo %CWS%
+
 python setup.py test
 
 if %errorlevel% neq 0 exit /b 1
\ No newline at end of file
diff --git a/setup.py b/setup.py
index fd9ca187..d3976757 100644
--- a/setup.py
+++ b/setup.py
@@ -7,6 +7,12 @@ import unittest
 sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'src')))
 
 if "test" in sys.argv:
+    if "XDG_CONFIG_HOME" in os.environ:
+        os.environ["XDG_CONFIG_HOME"] = os.path.abspath(os.path.join(os.path.dirname(__file__), 'tmp'))
+    elif "HOME" in os.environ:
+        os.environ["HOME"] = os.path.abspath(os.path.join(os.path.dirname(__file__), 'tmp'))
+    elif "APPDATA" in os.environ:
+        os.environ["APPDATA"] = os.path.abspath(os.path.join(os.path.dirname(__file__), 'tmp'))
     runner = unittest.TextTestRunner().run(unittest.defaultTestLoader.discover(start_dir='sakia.tests',
                                                                                pattern='test_*'))
 
-- 
GitLab