Home
last modified time | relevance | path

Searched refs:setup_py (Results 1 – 7 of 7) sorted by relevance

/external/autotest/utils/
Dexternal_packages.py252 egg_path = self._build_egg_using_setup_py(setup_py='setup.py')
260 egg_path = self._build_egg_using_setup_py(setup_py='setupegg.py')
334 def _build_using_setup_py(self, setup_py='setup.py'): argument
343 if not os.path.exists(setup_py):
344 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))
345 status = system("'%s' %s build" % (sys.executable, setup_py))
352 def _build_egg_using_setup_py(self, setup_py='setup.py'): argument
361 if not os.path.exists(setup_py):
362 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))
366 status = system("'%s' %s bdist_egg" % (sys.executable, setup_py))
[all …]
/external/python/setuptools/setuptools/tests/
Dtest_sandbox.py36 setup_py = tmpdir / 'setup.py'
37 with setup_py.open('wb') as stream:
39 setuptools.sandbox._execfile(str(setup_py), globals())
Dnamespaces.py9 setup_py = src_dir / 'setup.py'
20 setup_py.write_text(script, encoding='utf-8')
Dtest_config.py19 def fake_env(tmpdir, setup_cfg, setup_py=None): argument
21 if setup_py is None:
22 setup_py = (
27 tmpdir.join('setup.py').write(setup_py)
Dtest_easy_install.py583 setup_py = DALS("""\
595 files = [('setup.py', setup_py),
/external/python/cpython2/Lib/distutils/tests/
Dtest_core.py79 setup_py = os.path.join(test.test_support.TESTFN, "setup.py")
81 self.write_setup(setup_prints_cwd, path=setup_py))
/external/python/cpython3/Lib/distutils/tests/
Dtest_core.py109 setup_py = os.path.join(test.support.TESTFN, "setup.py")
111 self.write_setup(setup_prints_cwd, path=setup_py))