diff options
| author | Donald Stufft <donald@stufft.io> | 2014-09-04 21:04:06 -0400 |
|---|---|---|
| committer | Donald Stufft <donald@stufft.io> | 2014-09-25 20:55:27 -0400 |
| commit | 9382fa0c05e533400613e1c7c0a777cabb463390 (patch) | |
| tree | 7cd6f6aebf57ea3b4760cc359b4d4c266a0e04f0 /setuptools/tests/test_egg_info.py | |
| parent | 84c9006110e53c84296a05741edb7b9edd305f12 (diff) | |
| download | python-setuptools-git-9382fa0c05e533400613e1c7c0a777cabb463390.tar.gz | |
Implement PEP 440 by using the packaging library
Diffstat (limited to 'setuptools/tests/test_egg_info.py')
| -rw-r--r-- | setuptools/tests/test_egg_info.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py index 7531e37c..4c4f9456 100644 --- a/setuptools/tests/test_egg_info.py +++ b/setuptools/tests/test_egg_info.py @@ -34,7 +34,7 @@ class TestEggInfo(unittest.TestCase): entries_f = open(fn, 'wb') entries_f.write(entries) entries_f.close() - + @skipIf(not test_svn._svn_check, "No SVN to text, in the first place") def test_version_10_format(self): """ @@ -140,7 +140,7 @@ class TestSvnDummy(environment.ZippedEnvironment): @skipIf(not test_svn._svn_check, "No SVN to text, in the first place") def test_svn_tags(self): - code, data = environment.run_setup_py(["egg_info", + code, data = environment.run_setup_py(["egg_info", "--tag-svn-revision"], pypath=self.old_cwd, data_stream=1) @@ -155,7 +155,7 @@ class TestSvnDummy(environment.ZippedEnvironment): infile.close() del infile - self.assertTrue("Version: 0.1.1-r1\n" in read_contents) + self.assertTrue("Version: 0.1.1.post1\n" in read_contents) @skipIf(not test_svn._svn_check, "No SVN to text, in the first place") def test_no_tags(self): |
