Merge "Fix logic for config file env variables"
diff --git a/tempest/config.py b/tempest/config.py
index 704556f..66fbed3 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -727,9 +727,7 @@
 
         path = os.path.join(conf_dir, conf_file)
 
-        if not (os.path.isfile(path) or
-                'TEMPEST_CONFIG_DIR' in os.environ or
-                'TEMPEST_CONFIG' in os.environ):
+        if not os.path.isfile(path):
             path = failsafe_path
 
         # only parse the config file if we expect one to exist. This is needed