diff options
author | Éric Araujo <merwok@netwok.org> | 2012-03-07 19:56:18 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2012-03-07 19:56:18 (GMT) |
commit | 2fa0cbc9ae6bb8d29b3c8c1e871192602666157a (patch) | |
tree | a710124ba0592a9c68c59b594a61357a0debc84d /Lib/packaging/tests | |
parent | 00b41fc8283823eda6347c282d922a5edc15c37d (diff) | |
download | cpython-2fa0cbc9ae6bb8d29b3c8c1e871192602666157a.zip cpython-2fa0cbc9ae6bb8d29b3c8c1e871192602666157a.tar.gz cpython-2fa0cbc9ae6bb8d29b3c8c1e871192602666157a.tar.bz2 |
Remove buggy change for #13719 in packaging
Diffstat (limited to 'Lib/packaging/tests')
-rw-r--r-- | Lib/packaging/tests/test_command_bdist_msi.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Lib/packaging/tests/test_command_bdist_msi.py b/Lib/packaging/tests/test_command_bdist_msi.py index 25973ef..86754a8 100644 --- a/Lib/packaging/tests/test_command_bdist_msi.py +++ b/Lib/packaging/tests/test_command_bdist_msi.py @@ -1,5 +1,4 @@ """Tests for distutils.command.bdist_msi.""" -import os import sys from packaging.tests import unittest, support @@ -16,14 +15,6 @@ class BDistMSITestCase(support.TempdirManager, project_dir, dist = self.create_dist() cmd = bdist_msi(dist) cmd.ensure_finalized() - cmd.run() - - bdists = os.listdir(os.path.join(project_dir, 'dist')) - self.assertEqual(bdists, ['foo-0.1.msi']) - - # bug #13719: upload ignores bdist_msi files - self.assertEqual(dist.dist_files, - [('bdist_msi', 'any', 'dist/foo-0.1.msi')]) def test_suite(): |