Support setting configuration using the PYTEST_ADDOPTS environment variable.

--HG--
branch : env-addopts
This commit is contained in:
Dave Hunt
2015-01-23 20:09:42 +00:00
parent 394367e1d2
commit 7325a5fe2e
2 changed files with 9 additions and 0 deletions
+2
View File
@@ -705,6 +705,8 @@ class Config(object):
def _preparse(self, args, addopts=True):
self._initini(args)
if addopts:
env_addopts = os.environ.get('PYTEST_ADDOPTS', '')
args[:] = env_addopts.replace('"', '').split() + args
args[:] = self.getini("addopts") + args
self._checkversion()
self.pluginmanager.consider_preparse(args)