summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_packageindex.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove Python 2 compatibilityJason R. Coombs2020-08-161-6/+5
|
* Add platform-specific code to override the home directory to honor ↵Jason R. Coombs2020-05-151-1/+8
| | | | bpo-36264. Fixes #2112.
* Extract fixture for a temp homeJason R. Coombs2020-05-151-3/+8
|
* Just writeJason R. Coombs2020-05-151-7/+6
|
* Remove the test, no longer relevant now that external links are no longer ↵Jason R. Coombs2020-05-121-39/+0
| | | | supported and PyPI no longer allows replacing packages.
* 👹 Feed the hobgoblins (delint).Jason R. Coombs2020-05-121-2/+2
| | | | Fixes #2107
* Updated test to check for changed git rev checkout2xB2019-04-121-1/+1
| | | Checking for new implementation solving issue #1740
* Feed the hobgoblins (delint).Jason R. Coombs2019-01-261-5/+12
|
* Assert that warning is raised with svn downloadsPaul Ganssle2018-12-281-2/+4
| | | | | This both prevents the warning from surfacing during the tests and ensures that no regressions occur.
* Add test for download_svn, improving coverage on patchJason R. Coombs2018-12-151-0/+16
|
* Call index.download, covering more code. Split test into two.Jason R. Coombs2018-12-141-25/+28
|
* added unittest for _download_gitKanika Sabharwal2018-10-271-0/+36
|
* Update all pypi.python.org URLs to pypi.orgJon Dufresne2018-04-261-2/+2
| | | | | | For details on the new PyPI, see the blog post: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html
* Revert "Merge pull request #933 from pypa/feature/581-depend-not-bundle"Jason R. Coombs2017-02-241-2/+2
| | | | | This reverts commit 089cdeb489a0fa94d11b7307b54210ef9aa40511, reversing changes made to aaec654d804cb78dbb6391afff721a63f26a71cd.
* Add a test.Moriyoshi Koizumi2017-02-131-0/+42
|
* Strip out vendored packages and require them instead. Ref #581.Jason R. Coombs2017-01-011-2/+2
|
* Fix quantity of blank lines.stepshal2016-10-181-3/+0
|
* Merge pull request #655 from stepshal/imorts_in_same_blockJason R. Coombs2016-07-201-1/+1
|\ | | | | Put imports in same block alphabeticaly.
| * Put imports in same block alphabeticaly.stepshal2016-07-141-1/+1
| |
* | Add test capturing expectation of PYPI_MD5 patternJason R. Coombs2016-07-201-0/+10
| |
* | Fix missing whitespace around operator.stepshal2016-07-141-1/+1
|/
* Fix quantity of blank lines after code object.stepshal2016-07-131-0/+1
|
* Modeling after Astropy's technique for bundling libraries, the imports are ↵Jason R. Coombs2015-12-311-8/+2
| | | | | | | now much cleaner. Thanks @embray. Ref #229. --HG-- branch : feature/issue-229
* Update vendoring technique to match that used for packaging. Ref #229.Jason R. Coombs2015-12-311-2/+8
| | | | | --HG-- branch : feature/issue-229
* Merge with master. Ref #229.Jason R. Coombs2015-12-311-8/+25
|\ | | | | | | | | --HG-- branch : feature/issue-229
| * Use RawConfigParser instead of SafeConfigParser in PyPIConfig class. ↵Jason R. Coombs2015-12-141-1/+1
| | | | | | | | Interpolated values are no longer supported. Since backward compatibility could not be retained in either case, prefer the simpler, more direct format. Ref #442.
| * Use SafeConfigParser in PyPIConfig file. Allows percent signs to be ↵Jason R. Coombs2015-12-141-1/+1
| | | | | | | | specified using two percent signs. Fixes #442.
| * Add test capturing InterpolationSyntaxError on Python 3. Ref #442Jason R. Coombs2015-12-141-1/+1
| |
| * Add test capturing InterpolationSyntaxError on Python 3 and KeyError on Python 2Jason R. Coombs2015-12-141-0/+21
| |
| * Use except/as, now supported by Python 2.6Jason R. Coombs2015-01-041-8/+4
| |
* | Merge with 10.2.1Jason R. Coombs2015-01-021-41/+43
|\ \ | |/ | | | | | | --HG-- branch : feature/issue-229
| * Remove additional references to unittest.Jason R. Coombs2015-01-021-3/+1
| |
| * Use tmpdir in test_local_index for brevity and isolation.Jason R. Coombs2015-01-021-9/+6
| |
| * Remove dependence on unittest in favor of pytest for test_packgeindexJason R. Coombs2015-01-021-27/+36
| |
| * Reorganize importsJason R. Coombs2015-01-021-4/+4
| |
| * Remove unused importsJason R. Coombs2015-01-011-1/+1
| |
* | Use six for Python 2 compatibilityJason R. Coombs2014-07-051-7/+10
|/ | | | | | --HG-- branch : feature/issue-229 extra : source : 7b1997ececc5772798ce33a0f8e77387cb55a977
* Moved imports to the top, made them compatible with Python 2, and added a ↵Jason R. Coombs2013-12-011-4/+6
| | | | docstring.
* Adding test capturing #116Jason R. Coombs2013-12-011-0/+14
|
* Add test to exercise the basic functionality of _vcs_split_rev_from_urlJason R. Coombs2013-07-241-0/+9
|
* Update test to reflect the copy of the hash name stored because pypy doesn't ↵Jason R. Coombs2013-07-221-5/+1
| | | | implement the undocumented .name attribute on HASH objects.
* Add compatibility for Python 2.4 when querying the hash name. Fixes #440.9.6Jason R. Coombs2013-07-171-1/+15
|
* Use 'is_valid' instead of simply 'valid' or 'check', which are less clear ↵0.9.3Jason R. Coombs2013-07-151-3/+3
| | | | about the purpose of the method. Fixes AttributeError introduces in 0.9.2. Fixes #42.
* Added a couple of additional tests, including one capturing #42.Jason R. Coombs2013-07-151-0/+14
|
* Added a test to prove the basic usage of content checksJason R. Coombs2013-07-151-0/+11
|
* Merge Python 3 native support from distributeJason R. Coombs2013-06-181-10/+12
|\ | | | | | | | | --HG-- rename : tests/test_distribute_setup.py => tests/test_ez_setup.py
| * Post-merge fixes for Python 3.Vinay Sajip2012-10-101-1/+1
| | | | | | | | | | | | --HG-- branch : distribute extra : source : 6b9041dea7b9197f6ea1fb993d7a05dd4f7c580d
| * Merge with upstreamJason R. Coombs2013-06-181-19/+41
| |\ | | | | | | | | | | | | --HG-- branch : distribute
| * | Fixed some bugs - tests now all pass under Python 3.3.Vinay Sajip2011-06-211-1/+1
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 3498bfdc0d4c15e4276673b52e924c461ca353f0
| * | Changes to support 2.x and 3.x in the same codebase.Vinay Sajip2011-06-201-9/+13
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 7d3608edee54a43789f0574d702fb839628b5071