summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_upload.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge 3.4Donald Stufft2016-08-031-2/+2
|\
| * Merge 3.3Donald Stufft2016-08-031-2/+2
| |\
| | * Switch upload.pypi.io to upload.pypi.orgDonald Stufft2016-08-031-1/+1
| | |
| | * Switch to the new upload url for PyPIDonald Stufft2016-07-061-1/+1
| | |
* | | merge 3.4Benjamin Peterson2016-07-061-2/+2
|\ \ \ | |/ /
| * | Switch to the new upload url for PyPIDonald Stufft2016-07-061-2/+2
| | |
* | | Make PyPIRCCommandTestCase derive from a base classBerker Peksag2016-06-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Several test cases in distutils use PyPIRCCommandTestCase as their base class and as a result of that the following tests were ran more than once: * test_server_registration * test_server_empty_registration * test_config_interpolation This commit moves the infrastructure used by other tests into a new BasePyPIRCCommandTestCase class.
* | | Issue #27349: Fix typo in distutils upload commandBerker Peksag2016-06-181-1/+2
| | |
* | | Issue #20900: distutils register command now decodes HTTP responses correctlyBerker Peksag2016-06-101-1/+1
| | | | | | | | | | | | Initial patch by ingrid.
* | | Issue #21776: distutils.upload now correctly handles HTTPErrorBerker Peksag2016-06-021-1/+30
|/ / | | | | | | Initial patch by Claudiu Popa.
* | #10510: Fix bug in forward port of 2.7 distutils patch.R David Murray2014-09-281-1/+1
| | | | | | | | Pointed out by Arfrever.
* | #10510: make distuitls upload/register use HTML standards compliant CRLF.R David Murray2014-09-271-1/+1
| | | | | | | | Patch by Ian Cordasco, approved by Éric Araujo.
* | Issue #21722: The distutils "upload" command now exits with a non-zero ↵Antoine Pitrou2014-06-191-4/+12
| | | | | | | | | | | | return code when uploading fails. Patch by Martin Dengler.
* | Fix TypeError on "setup.py upload --show-response".Antoine Pitrou2013-12-221-1/+16
|\ \ | |/
| * Fix TypeError on "setup.py upload --show-response".Antoine Pitrou2013-12-221-1/+16
| |
| * Issue #12226: HTTPS is now used by default when connecting to PyPI.Antoine Pitrou2013-12-221-2/+2
| |\
| | * Issue #12226: HTTPS is now used by default when connecting to PyPI.Antoine Pitrou2013-12-221-4/+4
| | |
| * | Fix DeprecationWarnings in test suiteAntoine Pitrou2013-12-211-5/+5
| | |
* | | Correct long lineJason R. Coombs2013-11-161-1/+2
| | |
* | | Issue #19586: Update remaining deprecated assertions to their preferred usage.Jason R. Coombs2013-11-161-2/+2
| | |
* | | Update more usage of assertEqualJason R. Coombs2013-11-161-3/+3
| | |
* | | Fix failing test incorrectly merged in b1244046f37aJason R. Coombs2013-11-111-1/+1
| | |
* | | Merge with 3.3 for Issue #19544 and Issue #6286. Merge is untested. I was ↵Jason R. Coombs2013-11-101-40/+29
|\ \ \ | |/ / | | | | | | unable to test due to bab0cbf86835.
| * | Issue #19544 and Issue #6286: Restore use of urllib over http allowing use ↵Jason R. Coombs2013-11-101-37/+26
| |/ | | | | | | of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2.
* | Fix uploadTestCase to work even when HTTPSConnection is not available.Ezio Melotti2013-04-191-5/+5
| |
* | use the HTTPS for pypi uploadBenjamin Peterson2013-03-181-4/+4
|/
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-6/+6
|
* Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)Éric Araujo2010-11-061-3/+2
|
* reverted distutils its 3.1 state. All new work is now happening in ↵Tarek Ziadé2010-07-221-26/+35
| | | | disutils2, and distutils is now feature-frozen.
* Merged revisions 76952 via svnmerge fromTarek Ziadé2009-12-211-1/+22
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76952 | tarek.ziade | 2009-12-21 00:23:34 +0100 (Mon, 21 Dec 2009) | 1 line Fixed #7552: fixed distutils.command.upload failure on very long passwords ........
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-2/+2
|
* Merged revisions 73436 via svnmerge fromTarek Ziadé2009-06-281-34/+24
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73436 | tarek.ziade | 2009-06-16 01:30:13 +0200 (Tue, 16 Jun 2009) | 1 line Issue #6286: distutils upload command now uses urllib2 ........
* Merged revisions 70886,70888-70892 via svnmerge fromTarek Ziadé2009-03-311-7/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70886 | tarek.ziade | 2009-03-31 15:50:59 -0500 (Tue, 31 Mar 2009) | 1 line added tests for the clean command ........ r70888 | tarek.ziade | 2009-03-31 15:53:13 -0500 (Tue, 31 Mar 2009) | 1 line more tests for the register command ........ r70889 | tarek.ziade | 2009-03-31 15:53:55 -0500 (Tue, 31 Mar 2009) | 1 line more tests for the upload command ........ r70890 | tarek.ziade | 2009-03-31 15:54:38 -0500 (Tue, 31 Mar 2009) | 1 line added test to the install_data command ........ r70891 | tarek.ziade | 2009-03-31 15:55:21 -0500 (Tue, 31 Mar 2009) | 1 line added tests to the install_headers command ........ r70892 | tarek.ziade | 2009-03-31 15:56:11 -0500 (Tue, 31 Mar 2009) | 1 line making sdist and config test silents ........
* Merged revisions 68415 via svnmerge fromTarek Ziadé2009-01-091-0/+29
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68415 | tarek.ziade | 2009-01-09 00:56:31 +0100 (Fri, 09 Jan 2009) | 1 line fixed #4394 make the storage of the password optional in .pypirc ........
* Merged revisions ↵Alexandre Vassalotti2008-05-161-0/+34
62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r62998 | andrew.kuchling | 2008-05-10 15:51:55 -0400 (Sat, 10 May 2008) | 7 lines #1858 from Tarek Ziade: Allow multiple repositories in .pypirc; see http://wiki.python.org/moin/EnhancedPyPI for discussion. The patch is slightly revised from Tarek's last patch: I've simplified the PyPIRCCommand.finalize_options() method to not look at sys.argv. Tests still pass. ........ r63000 | alexandre.vassalotti | 2008-05-10 15:59:16 -0400 (Sat, 10 May 2008) | 5 lines Cleaned up io._BytesIO.write(). I am amazed that the old code, for inserting null-bytes, actually worked. Who wrote that thing? Oh, it is me... doh. ........ r63002 | brett.cannon | 2008-05-10 16:52:01 -0400 (Sat, 10 May 2008) | 2 lines Revert r62998 as it broke the build (seems distutils.config is missing). ........ r63014 | andrew.kuchling | 2008-05-10 18:12:38 -0400 (Sat, 10 May 2008) | 1 line #1858: add distutils.config module ........ r63027 | brett.cannon | 2008-05-10 21:09:32 -0400 (Sat, 10 May 2008) | 2 lines Flesh out the 3.0 deprecation to suggest using the ctypes module. ........ r63028 | skip.montanaro | 2008-05-10 22:59:30 -0400 (Sat, 10 May 2008) | 4 lines Copied two versions of the example from the interactive session. Delete one. ........ r63037 | georg.brandl | 2008-05-11 03:02:17 -0400 (Sun, 11 May 2008) | 2 lines reload() takes the module itself. ........ r63038 | alexandre.vassalotti | 2008-05-11 03:06:04 -0400 (Sun, 11 May 2008) | 4 lines Added test framework for handling module renames. Factored the import guard in test_py3kwarn.TestStdlibRemovals into a context manager, namely test_support.CleanImport. ........ r63039 | georg.brandl | 2008-05-11 03:06:05 -0400 (Sun, 11 May 2008) | 2 lines #2742: ``''`` is not converted to NULL in getaddrinfo. ........ r63040 | alexandre.vassalotti | 2008-05-11 03:08:12 -0400 (Sun, 11 May 2008) | 2 lines Fixed typo in a comment of test_support.CleanImport. ........ r63041 | alexandre.vassalotti | 2008-05-11 03:10:25 -0400 (Sun, 11 May 2008) | 2 lines Removed a dead line of code. ........ r63043 | georg.brandl | 2008-05-11 04:47:53 -0400 (Sun, 11 May 2008) | 2 lines #2812: document property.getter/setter/deleter. ........ r63049 | georg.brandl | 2008-05-11 05:06:30 -0400 (Sun, 11 May 2008) | 2 lines #1153769: document PEP 237 changes to string formatting. ........ r63050 | georg.brandl | 2008-05-11 05:11:40 -0400 (Sun, 11 May 2008) | 2 lines #2809: elaborate str.split docstring a bit. ........ r63051 | georg.brandl | 2008-05-11 06:13:59 -0400 (Sun, 11 May 2008) | 2 lines Fix typo. ........ r63052 | georg.brandl | 2008-05-11 06:33:27 -0400 (Sun, 11 May 2008) | 2 lines #2709: clarification. ........ r63053 | georg.brandl | 2008-05-11 06:42:28 -0400 (Sun, 11 May 2008) | 2 lines #2659: add ``break_on_hyphens`` to TextWrapper. ........ r63057 | georg.brandl | 2008-05-11 06:59:39 -0400 (Sun, 11 May 2008) | 2 lines #2741: clarification of value range for address_family. ........ r63058 | georg.brandl | 2008-05-11 07:09:35 -0400 (Sun, 11 May 2008) | 2 lines #2452: timeout is used for all blocking operations. ........ r63059 | andrew.kuchling | 2008-05-11 09:33:56 -0400 (Sun, 11 May 2008) | 2 lines #1792: Improve performance of marshal.dumps() on large objects by increasing the size of the buffer more quickly. ........ r63060 | andrew.kuchling | 2008-05-11 10:00:00 -0400 (Sun, 11 May 2008) | 1 line #1858: re-apply patch for this, adding the missing files ........ r63061 | benjamin.peterson | 2008-05-11 10:13:25 -0400 (Sun, 11 May 2008) | 2 lines Add the "until" command to pdb ........ r63062 | georg.brandl | 2008-05-11 10:17:13 -0400 (Sun, 11 May 2008) | 2 lines Add some sentence endings. ........