summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_venv.py
Commit message (Collapse)AuthorAgeFilesLines
* Closes #22829: Added --prompt option to venv.Vinay Sajip2016-08-061-0/+11
|
* Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-1/+0
|
* test_venv: enhance test_devnull()Victor Stinner2016-03-251-10/+9
|
* Skip test_venv.test_with_pip() if ctypes missVictor Stinner2016-03-251-0/+7
| | | | Issue #26610.
* Merge 3.5 (test_venv)Victor Stinner2016-03-141-1/+10
|\
| * Fix test_venv on FreeBSD buildbotVictor Stinner2016-03-141-1/+10
| | | | | | | | Ignore pip warning in test_venv.test_with_venv().
* | Issue #25985: sys.version_info is now used instead of sys.versionSerhiy Storchaka2016-02-111-1/+1
|/ | | | to format short Python version.
* Issue #25366: Skip test_with_pip when threading module is not availableBerker Peksag2016-01-191-0/+7
| | | | | Some dependencies of pip import threading module unconditionally so we need to skip the test to make buildbots happy.
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-5/+2
| | | | | | | I have compared output between pre- and post-patch runs of these tests to make sure there's nothing missing and nothing broken, on both Windows and Linux. The only differences I found were actually tests that were previously *not* run.
* test_venv: use support.rmtree() instead of shutil.rmtree() to fix sporadicVictor Stinner2014-10-101-11/+10
| | | | failures on Windows
* Issue #21643: Updated test and fixed logic bug in lib64 symlink creation.Vinay Sajip2014-06-031-11/+16
|
* Issue #21197: Add lib64 -> lib symlink in venvs on 64-bit non-OS X POSIX.Vinay Sajip2014-04-151-0/+9
|
* Issue #20053: Mark as an expected failure for 3.4Nick Coghlan2014-02-071-2/+12
|
* Issue #20053: Actually test relevant assumptionNick Coghlan2014-02-071-1/+1
|
* Issue #20053: new test to check an assumptionNick Coghlan2014-02-051-0/+7
|
* Close #20053: ignore default pip config settingsNick Coghlan2014-02-041-9/+28
| | | | | | ensurepip now sets PIP_CONFIG_FILE to os.devnull before import pip from the wheel file. This also ensures venv ignores the default settings when bootstrapping pip.
* Issue #19744: improve ensurepip error when ssl is missingNick Coghlan2013-12-231-2/+5
|
* Close #19734: ignore pip env vars in ensurepipNick Coghlan2013-12-231-9/+5
|
* Issue #19728: don't be sensitive to line endingsNick Coghlan2013-11-301-9/+5
|
* Issue #19728: add private ensurepip._uninstall CLINick Coghlan2013-11-301-16/+50
| | | | | | | | | | | | | | MvL would like to be able to preserve CPython's existing clean uninstall behaviour on Windows before enabling the pip installation option by default. This private CLI means running "python -m ensurepip._uninstall" will remove pip and setuptools before proceeding with the rest of the uninstallation process. If the version of pip differs from the one bootstrapped by CPython, then the uninstallation helper will leave it alone (just like any other pip installed packages)
* Fix and test pip version consistencyNick Coghlan2013-11-301-1/+3
|
* Issue #19734: Also run pip version check in isolated modeNick Coghlan2013-11-241-2/+2
|
* Issue #19734: Ensure test_venv ignores PIP_REQUIRE_VIRTUALENVNick Coghlan2013-11-241-0/+4
|
* Issue #19744 (temp workaround): without ssl, skip pip testNick Coghlan2013-11-241-0/+6
|
* Issue 19734: better diagnostics for test_venv failuresNick Coghlan2013-11-241-4/+16
|
* Close #19694: venv now runs ensurepip in isolated modeNick Coghlan2013-11-231-2/+7
|
* Close #19552: venv and pyvenv ensurepip integrationNick Coghlan2013-11-221-5/+49
|
* Issue #18224: Updated test.Vinay Sajip2013-06-301-4/+0
|\
| * Issue #18224: Updated test.Vinay Sajip2013-06-301-4/+0
| |
* | Closes #15776: pyvenv now works with existing directories.Vinay Sajip2012-10-111-2/+57
|/
* Fix test_venv to work with universal newlines (issue #13119)Antoine Pitrou2012-08-041-3/+3
|
* Closes #15307: symlinks now work on OS X with framework Python builds. ↵Vinay Sajip2012-07-171-11/+41
| | | | Patch by Ronald Oussoren.
* Issue #15307: Skipped test_venv:test_prefixes when run from a venv.Vinay Sajip2012-07-151-0/+2
|
* Issue #15241: Fix test_prefixes failure in test_venv due to symlink inNed Deily2012-07-131-1/+1
| | | | tempfile directory path (i.e. on OS X /tmp is actually /private/tmp).
* Issue #15241: Added test for venv prefixes.Vinay Sajip2012-07-031-0/+25
|
* Closes #15173: Tidied up copyright statements and removed pythonv references.Vinay Sajip2012-06-241-5/+6
|
* Restore test that was using pysetup and can now (#15157) use pydocÉric Araujo2012-06-241-0/+4
|
* Remove packaging from the standard library.Éric Araujo2012-06-241-4/+0
| | | | | | Distutils2 will live on on PyPI and be included in the stdlib when it is ready. See discussion starting at http://mail.python.org/pipermail/python-dev/2012-June/120430.html
* Updated test to reflect renamed file.Vinay Sajip2012-05-291-1/+1
|
* Fixed typo.Vinay Sajip2012-05-281-1/+1
|
* Tweaked tests to use launcher executable name on OS X.Vinay Sajip2012-05-281-1/+5
|
* Changed executable name computation in test_venv to allow for debug executables.Vinay Sajip2012-05-271-2/+1
|
* Refined venv tests.Vinay Sajip2012-05-271-9/+26
|
* Fixed _sys_home computation and added diagnostics for Windows buildbot failures.Vinay Sajip2012-05-271-1/+4
|
* Addressed some buildbot errors and comments on the checkin by Antoine on ↵Vinay Sajip2012-05-261-22/+5
| | | | python-dev.
* Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-0/+139