summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_egg_info.py
Commit message (Collapse)AuthorAgeFilesLines
* PY26 doesn't have assertInPhilip Thiem2014-05-171-2/+2
|
* Add Regression Tests for svn tagging.Philip Thiem2014-04-231-0/+37
|
* Modified setuptools.test.environment.ZipEnvironment to not choke on a bypassedPhilip Thiem2013-12-071-8/+13
| | | | | | | | setUp. test_egg_info, test_sdist, and test_svn all had tests that needed to be bypassed when svn was not present. tests.py26compat contains a SkipIf decorator for skipping. This worked after ironing a few wrinkles. The conditions is evaluated and stored in test_svn._svn_check.
* For .svn legacy fallback, look for the files in the .svn not the directory.Philip Thiem2013-11-111-1/+95
| | | | | | | | | | | | | | | | (Fixed unexpected deprecation warning from prombredanne) Also removed the warning from fallback, only a deprecation warning is issued. Environment.py whitespacing Created a specialized command executor for tests in Environment.py Legacy Test in test_egg_info now supresses the deprecation warning. PythonPath is now explicitly controlled to allow setup.py test on clean python installations. *Fixes Issue #101* Moved some dummy svn tests from test_sdist to test_egg_info since they are egg_info tests. Downgraded a with statement in a test since we haven't offically dropped 2.4 support, however, maybe it is time. Added a test case to ensure no extranuous output on sdist with a simple dummy package without rev ctrl.
* Added a legacy fallback testPhilip Thiem2013-09-281-0/+21
| | | | | Added in code to after a deprecation warning parse the .svn files Should also parse externals.
* Additional Tests, Various fixes, and encoding dealingsPhilip Thiem2013-07-201-0/+13
|
* Add test capturing failure on Python 3 in egg_info.get_svn_revision (#20). ↵Jason R. Coombs2013-06-191-0/+40
egg_info.get_svn_revision is now a staticmethod.