How to use make_envconfig method in tox

Best Python code snippet using tox_python

envlist.py

Source:envlist.py Github

copy

Full Screen

...41 make_envconfig = getattr(make_envconfig, '__func__', make_envconfig)42 # Create the undeclared envs43 for env in envs:44 section = tox.config.testenvprefix + env45 config.envconfigs[env] = make_envconfig(46 config, env, section, reader._subs, config)47def get_declared_envs(ini):48 """Get the full list of envs from the tox ini.49 This notably also includes envs that aren't in the envlist,50 but are declared by having their own testenv:envname section.51 The envs are expected in a particular order. First the ones52 declared in the envlist, then the other testenvs in order.53 """54 tox_section_name = 'tox:tox' if ini.path.endswith('setup.cfg') else 'tox'55 tox_section = ini.sections.get(tox_section_name, {})56 envlist = split_env(tox_section.get('envlist', []))57 # Add additional envs that are declared as sections in the ini58 section_envs = [59 section[8:] for section in sorted(ini.sections, key=ini.lineof)...

Full Screen

Full Screen

tox_hooks.py

Source:tox_hooks.py Github

copy

Full Screen

...140 # Store the generated envlist141 self.config.buck_envlist = []142 for tox_case in tox_cases:143 section = testenvprefix + tox_case.name144 config = make_envconfig(145 self.config, tox_case.name, section, reader._subs, self.config146 )147 config.tox_case = tox_case148 # We do not want to install packages149 config.skipsdist = True150 config.skip_install = True151 self.customize_envconfig(config)152 for v in passenv_list:153 if v not in config.passenv:154 config.passenv.add(v)155 self.config.envconfigs[tox_case.name] = config156 self.config.buck_envlist.append(tox_case.name)157 def customize_envconfig(self, config):158 """Writes the fields of the envconfig that need to be given default...

Full Screen

Full Screen

plugin_test.py

Source:plugin_test.py Github

copy

Full Screen

...18 """Return a mock tox Config object."""19 return MagicMock(20 spec_set=["envconfigs", "envlist"],21 envconfigs={22 "format": make_envconfig("format"),23 "test": make_envconfig("test"),24 },25 envlist=["test"],26 )27 @pytest.fixture28 def cached_hash_path(self, config):29 """Return the path to the cached hash file."""30 return get_cached_hash_path(config.envconfigs["test"])31class TestToxRuntestPre:32 def test_it_caches_the_hash(self, setup_cfg_hash, venv):33 venv.envconfig.recreate = True34 plugin.tox_runtest_pre(venv)35 assert get_cached_hash_path(venv.envconfig).read_text() == setup_cfg_hash36 def test_it_doesnt_cache_the_hash_if_the_venv_wasnt_updated(self, venv):37 plugin.tox_runtest_pre(venv)38 assert not get_cached_hash_path(venv.envconfig).exists()39 @pytest.fixture40 def venv(self, make_envconfig):41 return MagicMock(spec_set=["envconfig"], envconfig=make_envconfig("lint"))42def get_cached_hash_path(envconfig):43 """Return the patch to envconfig's cached hash file."""44 return envconfig.envdir / "tox_recreate.hash"45@pytest.fixture46def make_envconfig(tmp_path):47 def make_envconfig(envname):48 """Return a mock tox TestenvConfig object."""49 envconfig = MagicMock(50 spec_set=["envname", "envdir", "recreate"],51 envname=envname,52 envdir=tmp_path / envname,53 recreate=False,54 )55 envconfig.envdir.mkdir(parents=True, exist_ok=True)56 return envconfig57 return make_envconfig58@pytest.fixture(autouse=True)59def get_setup_cfg_path(mocker, tmp_path):60 """Patch plugin.py so that it reads the test setup.cfg file."""61 return mocker.patch(...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run tox automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful