Skip to content

Commit

Permalink
add test for #2824
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Oct 11, 2017
1 parent 39e42f2 commit a5385fb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions testing/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -843,3 +843,10 @@ def test_with_existing_file_in_subdir(self, tmpdir):
rootdir, inifile, inicfg = determine_setup(None, ['a/exist'])
assert rootdir == tmpdir
assert inifile is None

def test_addopts_before_initini(self, testdir, tmpdir, monkeypatch):
monkeypatch.setenv('PYTEST_ADDOPTS', '-o cache_dir=/somewhere')
from _pytest.config import get_config
config = get_config()
config._preparse([], addopts=True)
assert config._override_ini == [['cache_dir=/somewhere']]

0 comments on commit a5385fb

Please sign in to comment.