Hello community,
here is the log from the commit of package python-python-subunit for
openSUSE:Factory checked in at 2013-07-22 13:53:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-python-subunit (Old)
and /work/SRC/openSUSE:Factory/.python-python-subunit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-python-subunit"
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-python-subunit/python-python-subunit.changes
2013-06-05 13:08:42.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.python-python-subunit.new/python-python-subunit.changes
2013-07-22 13:53:24.000000000 +0200
@@ -1,0 +2,9 @@
+Fri Jul 19 10:54:46 UTC 2013 - [email protected]
+
+- update to 0.0.13:
+ * Fix GPL licensing issue
+ * `subunit-stats` no longer outputs encapsulated stdout as subunit.
+ * The logic for `subunit.run` is now importable via python -
+ `subunit.run.main`. (Robert Collins, #606770)
+
+-------------------------------------------------------------------
Old:
----
python-subunit-0.0.12.tar.gz
New:
----
python-subunit-0.0.13.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-python-subunit.spec ++++++
--- /var/tmp/diff_new_pack.czypWJ/_old 2013-07-22 13:53:25.000000000 +0200
+++ /var/tmp/diff_new_pack.czypWJ/_new 2013-07-22 13:53:25.000000000 +0200
@@ -17,7 +17,7 @@
Name: python-python-subunit
-Version: 0.0.12
+Version: 0.0.13
Release: 0
Summary: Python implementation of subunit test streaming protocol
License: Apache-2.0 or BSD-3-Clause
++++++ python-subunit-0.0.12.tar.gz -> python-subunit-0.0.13.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/python-subunit-0.0.12/NEWS
new/python-subunit-0.0.13/NEWS
--- old/python-subunit-0.0.12/NEWS 2013-05-13 00:47:48.000000000 +0200
+++ new/python-subunit-0.0.13/NEWS 2013-06-16 22:02:45.000000000 +0200
@@ -5,6 +5,27 @@
NEXT (In development)
---------------------
+0.0.13
+------
+
+IMPROVEMENTS
+~~~~~~~~~~~~
+
+* subunit should now build with automake 1.11 again. (Robert Collins)
+
+* `subunit-stats` no longer outputs encapsulated stdout as subunit.
+ (Robert Collins, #1171987)
+
+* The logic for `subunit.run` is now importable via python -
+ `subunit.run.main`. (Robert Collins, #606770)
+
+BUG FIXES
+~~~~~~~~~
+
+* Removed GPL files that were (C) non Subunit Developers - they are
+ incompatible for binary distribution, which affects redistributors.
+ (Robert Collins, #1185591)
+
0.0.12
------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/python-subunit-0.0.12/PKG-INFO
new/python-subunit-0.0.13/PKG-INFO
--- old/python-subunit-0.0.12/PKG-INFO 2013-05-13 00:50:21.000000000 +0200
+++ new/python-subunit-0.0.13/PKG-INFO 2013-06-16 22:03:53.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
Name: python-subunit
-Version: 0.0.12
+Version: 0.0.13
Summary: Python implementation of subunit test streaming protocol
Home-page: http://launchpad.net/subunit
Author: Robert Collins
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/python-subunit-0.0.12/filters/subunit-stats
new/python-subunit-0.0.13/filters/subunit-stats
--- old/python-subunit-0.0.12/filters/subunit-stats 2013-04-08
12:28:36.000000000 +0200
+++ new/python-subunit-0.0.13/filters/subunit-stats 2013-06-16
21:53:39.000000000 +0200
@@ -29,4 +29,4 @@
r.decorated.formatStats()
run_filter_script(
lambda output:StreamToExtendedDecorator(result),
- __doc__, show_stats, protocol_version=2)
+ __doc__, show_stats, protocol_version=2, passthrough_subunit=False)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/python-subunit-0.0.12/python/subunit/__init__.py
new/python-subunit-0.0.13/python/subunit/__init__.py
--- old/python-subunit-0.0.12/python/subunit/__init__.py 2013-05-13
00:48:15.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/__init__.py 2013-06-16
21:55:37.000000000 +0200
@@ -160,7 +160,7 @@
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
# Otherwise it is major.minor.micro~$(revno).
-__version__ = (0, 0, 12, 'final', 0)
+__version__ = (0, 0, 13, 'final', 0)
PROGRESS_SET = 0
PROGRESS_CUR = 1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/python-subunit-0.0.12/python/subunit/filters.py
new/python-subunit-0.0.13/python/subunit/filters.py
--- old/python-subunit-0.0.12/python/subunit/filters.py 2013-04-08
12:28:36.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/filters.py 2013-06-16
21:53:31.000000000 +0200
@@ -106,7 +106,8 @@
def filter_by_result(result_factory, output_path, passthrough, forward,
- input_stream=sys.stdin, protocol_version=1):
+ input_stream=sys.stdin, protocol_version=1,
+ passthrough_subunit=True):
"""Filter an input stream using a test result.
:param result_factory: A callable that when passed an output stream
@@ -121,6 +122,7 @@
:param input_stream: The source of subunit input. Defaults to
``sys.stdin``.
:param protocol_version: The subunit protocol version to expect.
+ :param passthrough_subunit: If True, passthrough should be as subunit.
:return: A test result with the results of the run.
"""
if passthrough:
@@ -147,7 +149,8 @@
result = result_factory(output_to)
run_tests_from_stream(
input_stream, result, passthrough_stream, forward_stream,
- protocol_version=protocol_version)
+ protocol_version=protocol_version,
+ passthrough_subunit=passthrough_subunit)
finally:
if output_path:
output_to.close()
@@ -155,7 +158,7 @@
def run_filter_script(result_factory, description, post_run_hook=None,
- protocol_version=1):
+ protocol_version=1, passthrough_subunit=True):
"""Main function for simple subunit filter scripts.
Many subunit filter scripts take a stream of subunit input and use a
@@ -169,12 +172,14 @@
a test result that outputs to that stream.
:param description: A description of the filter script.
:param protocol_version: What protocol version to consume/emit.
+ :param passthrough_subunit: If True, passthrough should be as subunit.
"""
parser = make_options(description)
(options, args) = parser.parse_args()
result = filter_by_result(
result_factory, options.output_to, not options.no_passthrough,
- options.forward, protocol_version=protocol_version)
+ options.forward, protocol_version=protocol_version,
+ passthrough_subunit=passthrough_subunit)
if post_run_hook:
post_run_hook(result)
if not safe_hasattr(result, 'wasSuccessful'):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/python-subunit-0.0.12/python/subunit/run.py
new/python-subunit-0.0.13/python/subunit/run.py
--- old/python-subunit-0.0.12/python/subunit/run.py 2013-04-08
12:28:36.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/run.py 2013-06-16
21:24:39.000000000 +0200
@@ -105,7 +105,7 @@
sys.exit(2)
-if __name__ == '__main__':
+def main():
# Disable the default buffering, for Python 2.x where pdb doesn't do it
# on non-ttys.
stream = get_default_formatter()
@@ -118,3 +118,7 @@
sys.stdout = binstdout
SubunitTestProgram(module=None, argv=sys.argv, testRunner=runner,
stdout=sys.stdout)
+
+
+if __name__ == '__main__':
+ main()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/TestUtil.py
new/python-subunit-0.0.13/python/subunit/tests/TestUtil.py
--- old/python-subunit-0.0.12/python/subunit/tests/TestUtil.py 2011-05-04
12:32:15.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/tests/TestUtil.py 1970-01-01
01:00:00.000000000 +0100
@@ -1,80 +0,0 @@
-# Copyright (c) 2004 Canonical Limited
-# Author: Robert Collins <[email protected]>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-#
-
-import sys
-import logging
-import unittest
-
-
-class LogCollector(logging.Handler):
- def __init__(self):
- logging.Handler.__init__(self)
- self.records=[]
- def emit(self, record):
- self.records.append(record.getMessage())
-
-
-def makeCollectingLogger():
- """I make a logger instance that collects its logs for programmatic
analysis
- -> (logger, collector)"""
- logger=logging.Logger("collector")
- handler=LogCollector()
- handler.setFormatter(logging.Formatter("%(levelname)s: %(message)s"))
- logger.addHandler(handler)
- return logger, handler
-
-
-def visitTests(suite, visitor):
- """A foreign method for visiting the tests in a test suite."""
- for test in suite._tests:
- #Abusing types to avoid monkey patching unittest.TestCase.
- # Maybe that would be better?
- try:
- test.visit(visitor)
- except AttributeError:
- if isinstance(test, unittest.TestCase):
- visitor.visitCase(test)
- elif isinstance(test, unittest.TestSuite):
- visitor.visitSuite(test)
- visitTests(test, visitor)
- else:
- print ("unvisitable non-unittest.TestCase element %r (%r)" %
(test, test.__class__))
-
-
-class TestSuite(unittest.TestSuite):
- """I am an extended TestSuite with a visitor interface.
- This is primarily to allow filtering of tests - and suites or
- more in the future. An iterator of just tests wouldn't scale..."""
-
- def visit(self, visitor):
- """visit the composite. Visiting is depth-first.
- current callbacks are visitSuite and visitCase."""
- visitor.visitSuite(self)
- visitTests(self, visitor)
-
-
-class TestLoader(unittest.TestLoader):
- """Custome TestLoader to set the right TestSuite class."""
- suiteClass = TestSuite
-
-class TestVisitor(object):
- """A visitor for Tests"""
- def visitSuite(self, aTestSuite):
- pass
- def visitCase(self, aTestCase):
- pass
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/__init__.py
new/python-subunit-0.0.13/python/subunit/tests/__init__.py
--- old/python-subunit-0.0.12/python/subunit/tests/__init__.py 2013-04-08
12:28:36.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/tests/__init__.py 2013-06-16
11:57:24.000000000 +0200
@@ -14,8 +14,9 @@
# limitations under that license.
#
+from unittest import TestLoader
+
from subunit.tests import (
- TestUtil,
test_chunked,
test_details,
test_progress_model,
@@ -30,16 +31,16 @@
)
def test_suite():
- result = TestUtil.TestSuite()
- result.addTest(test_chunked.test_suite())
- result.addTest(test_details.test_suite())
- result.addTest(test_progress_model.test_suite())
- result.addTest(test_test_results.test_suite())
- result.addTest(test_test_protocol.test_suite())
- result.addTest(test_test_protocol2.test_suite())
- result.addTest(test_tap2subunit.test_suite())
- result.addTest(test_subunit_filter.test_suite())
- result.addTest(test_subunit_tags.test_suite())
- result.addTest(test_subunit_stats.test_suite())
- result.addTest(test_run.test_suite())
+ loader = TestLoader()
+ result = loader.loadTestsFromModule(test_chunked)
+ result.addTest(loader.loadTestsFromModule(test_details))
+ result.addTest(loader.loadTestsFromModule(test_progress_model))
+ result.addTest(loader.loadTestsFromModule(test_test_results))
+ result.addTest(loader.loadTestsFromModule(test_test_protocol))
+ result.addTest(loader.loadTestsFromModule(test_test_protocol2))
+ result.addTest(loader.loadTestsFromModule(test_tap2subunit))
+ result.addTest(loader.loadTestsFromModule(test_subunit_filter))
+ result.addTest(loader.loadTestsFromModule(test_subunit_tags))
+ result.addTest(loader.loadTestsFromModule(test_subunit_stats))
+ result.addTest(loader.loadTestsFromModule(test_run))
return result
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_chunked.py
new/python-subunit-0.0.13/python/subunit/tests/test_chunked.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_chunked.py
2011-05-04 12:32:15.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/tests/test_chunked.py
2013-06-16 11:54:26.000000000 +0200
@@ -22,12 +22,6 @@
import subunit.chunked
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
-
-
class TestDecode(unittest.TestCase):
def setUp(self):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_details.py
new/python-subunit-0.0.13/python/subunit/tests/test_details.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_details.py
2011-05-04 12:32:15.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/tests/test_details.py
2013-06-16 11:55:48.000000000 +0200
@@ -22,12 +22,6 @@
from subunit import content, content_type, details
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
-
-
class TestSimpleDetails(unittest.TestCase):
def test_lineReceived(self):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_progress_model.py
new/python-subunit-0.0.13/python/subunit/tests/test_progress_model.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_progress_model.py
2009-12-15 10:58:23.000000000 +0100
+++ new/python-subunit-0.0.13/python/subunit/tests/test_progress_model.py
2013-06-16 11:58:02.000000000 +0200
@@ -110,9 +110,3 @@
progress.advance()
progress.pop()
self.assertProgressSummary(1, 3, progress)
-
-
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_run.py
new/python-subunit-0.0.13/python/subunit/tests/test_run.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_run.py 2013-04-08
12:28:36.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/tests/test_run.py 2013-06-16
11:58:23.000000000 +0200
@@ -24,12 +24,6 @@
from subunit.run import SubunitTestRunner
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
-
-
class TestSubunitTestRunner(unittest.TestCase):
def test_includes_timing_output(self):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_subunit_filter.py
new/python-subunit-0.0.13/python/subunit/tests/test_subunit_filter.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_subunit_filter.py
2013-04-08 12:28:36.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/tests/test_subunit_filter.py
2013-06-16 11:58:35.000000000 +0200
@@ -344,9 +344,3 @@
stream = StreamResultToBytes(byte_stream)
stream.status(file_name="stdout", file_bytes=b'hi thar')
self.assertEqual(byte_stream.getvalue(), output)
-
-
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_subunit_stats.py
new/python-subunit-0.0.13/python/subunit/tests/test_subunit_stats.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_subunit_stats.py
2011-05-04 12:32:15.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/tests/test_subunit_stats.py
2013-06-16 11:58:47.000000000 +0200
@@ -76,9 +76,3 @@
self.setUpUsedStream()
self.result.formatStats()
self.assertEqual(expected, self.output.getvalue())
-
-
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_subunit_tags.py
new/python-subunit-0.0.13/python/subunit/tests/test_subunit_tags.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_subunit_tags.py
2013-04-08 12:28:36.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/tests/test_subunit_tags.py
2013-06-16 11:58:51.000000000 +0200
@@ -62,9 +62,3 @@
self.assertEqual(
0, subunit.tag_stream(self.original, self.filtered, ["-bar"]))
self.assertEqual(reference.getvalue(), self.filtered.getvalue())
-
-
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_tap2subunit.py
new/python-subunit-0.0.13/python/subunit/tests/test_tap2subunit.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_tap2subunit.py
2013-04-08 12:28:36.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/tests/test_tap2subunit.py
2013-06-16 11:58:56.000000000 +0200
@@ -385,9 +385,3 @@
eventstream = StreamResult()
subunit.ByteStreamToStreamResult(self.subunit).run(eventstream)
self.assertEqual(events, eventstream._events)
-
-
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_test_protocol.py
new/python-subunit-0.0.13/python/subunit/tests/test_test_protocol.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_test_protocol.py
2012-12-17 08:57:15.000000000 +0100
+++ new/python-subunit-0.0.13/python/subunit/tests/test_test_protocol.py
2013-06-16 11:59:06.000000000 +0200
@@ -1329,9 +1329,3 @@
def test_tags_gone(self):
self.protocol.tags(set(), set(['bar']))
self.assertEqual(_b("tags: -bar\n"), self.io.getvalue())
-
-
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_test_protocol2.py
new/python-subunit-0.0.13/python/subunit/tests/test_test_protocol2.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_test_protocol2.py
2013-05-13 00:45:56.000000000 +0200
+++ new/python-subunit-0.0.13/python/subunit/tests/test_test_protocol2.py
2013-06-16 11:59:01.000000000 +0200
@@ -415,9 +415,3 @@
file_bytes=b'foo')
self.check_event(content.getvalue(), test_id=None, file_name='bar',
route_code='0', mime_type='text/plain', file_bytes=b'foo')
-
-
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python/subunit/tests/test_test_results.py
new/python-subunit-0.0.13/python/subunit/tests/test_test_results.py
--- old/python-subunit-0.0.12/python/subunit/tests/test_test_results.py
2012-12-17 07:59:43.000000000 +0100
+++ new/python-subunit-0.0.13/python/subunit/tests/test_test_results.py
2013-06-16 11:59:10.000000000 +0200
@@ -564,9 +564,3 @@
stream = StringIO()
subunit.test_results.CsvResult(stream)
self.assertEqual([], self.parse_stream(stream))
-
-
-def test_suite():
- loader = subunit.tests.TestUtil.TestLoader()
- result = loader.loadTestsFromName(__name__)
- return result
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python_subunit.egg-info/PKG-INFO
new/python-subunit-0.0.13/python_subunit.egg-info/PKG-INFO
--- old/python-subunit-0.0.12/python_subunit.egg-info/PKG-INFO 2013-05-13
00:50:21.000000000 +0200
+++ new/python-subunit-0.0.13/python_subunit.egg-info/PKG-INFO 2013-06-16
22:03:53.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
Name: python-subunit
-Version: 0.0.12
+Version: 0.0.13
Summary: Python implementation of subunit test streaming protocol
Home-page: http://launchpad.net/subunit
Author: Robert Collins
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/python-subunit-0.0.12/python_subunit.egg-info/SOURCES.txt
new/python-subunit-0.0.13/python_subunit.egg-info/SOURCES.txt
--- old/python-subunit-0.0.12/python_subunit.egg-info/SOURCES.txt
2013-05-13 00:50:21.000000000 +0200
+++ new/python-subunit-0.0.13/python_subunit.egg-info/SOURCES.txt
2013-06-16 22:03:53.000000000 +0200
@@ -22,7 +22,6 @@
python/subunit/run.py
python/subunit/test_results.py
python/subunit/v2.py
-python/subunit/tests/TestUtil.py
python/subunit/tests/__init__.py
python/subunit/tests/sample-script.py
python/subunit/tests/sample-two-script.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/python-subunit-0.0.12/setup.cfg
new/python-subunit-0.0.13/setup.cfg
--- old/python-subunit-0.0.12/setup.cfg 2013-05-13 00:50:21.000000000 +0200
+++ new/python-subunit-0.0.13/setup.cfg 2013-06-16 22:03:53.000000000 +0200
@@ -1,5 +1,5 @@
[egg_info]
-tag_build =
tag_date = 0
tag_svn_revision = 0
+tag_build =
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]