Best Python code snippet using tox_python
config.py
Source:config.py
...523 name = "jython"524 else:525 name = "python"526 return self.envbindir.join(name)527 def get_envsitepackagesdir(self):528 """ return sitepackagesdir of the virtualenv environment.529 (only available during execution, not parsing)530 """531 x = self.config.interpreters.get_sitepackagesdir(532 info=self.python_info,533 envdir=self.envdir)534 return x535 @property536 def python_info(self):537 """ return sitepackagesdir of the virtualenv environment. """538 return self.config.interpreters.get_info(envconfig=self)539 def getsupportedinterpreter(self):540 if sys.platform == "win32" and self.basepython and \541 "jython" in self.basepython:...
__init__.py
Source:__init__.py
...61 """62 envconfig: TestenvConfig = venv.envconfig63 if envconfig.isolate_dirs:64 # venv.envconfig.setenv["COVERAGE_HOME"] = str(venv.path / "lib")65 # venv.envconfig.setenv["COVERAGE_HOME"] = envconfig.get_envsitepackagesdir()66 print(Style.BRIGHT(f"{envconfig.envname} run-test-pre: isolating test environment"))67 source_dir = pathlib.Path.cwd()68 with TemporaryDirectory() as tmpdir:69 for directory in envconfig.isolate_dirs:70 if os.path.isabs(directory):71 os.symlink(directory, pathlib.Path(tmpdir) / os.path.relpath(directory, source_dir))72 else:73 os.symlink(source_dir / directory, pathlib.Path(tmpdir) / directory)74 venv.envconfig.changedir = py.path.local(tmpdir)75 venv.test(redirect=redirect)76 # copy .coverage from tmp dir back into root77 if (pathlib.Path(tmpdir) / ".coverage").is_file():78 shutil.copy2(pathlib.Path(tmpdir) / ".coverage", source_dir / ".coverage")79 fixup_coverage(80 old_base=envconfig.get_envsitepackagesdir(),81 new_base=source_dir,82 coverage_filename=source_dir / ".coverage"83 )84 return True # Return non-None to indicate plugin has completed85 return None86def fixup_coverage(87 old_base: PathLike,88 new_base: PathLike,89 coverage_filename: PathLike = ".coverage",90 ):91 """92 Replaces the start of filenames in .coverage files.93 :param old_base:94 :param new_base:...
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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!