zopefoundation / transaction

Generic transaction implementation for Python.
Other
70 stars 31 forks source link

Jenkins failures on master #29

Closed tseaver closed 7 years ago

tseaver commented 8 years ago

From: http://jenkins.pylonsproject.org/job/transaction/58/console

Coverage gap:

coverage inst-nodeps: /home/agendaless/jenkins/pylonsproject/jobs/transaction/workspace/.tox/dist/transaction-1.7.0.zip
coverage installed: coverage==4.2,funcsigs==1.0.2,mock==2.0.0,nose==1.3.7,nosexcover==1.0.10,pbr==1.10.0,six==1.10.0,transaction==1.7.0,zope.interface==4.3.2
coverage runtests: PYTHONHASHSEED='1290084312'
coverage runtests: commands[0] | nosetests --with-xunit --with-xcoverage
...................................................................................................................................................................................
Name                          Stmts   Miss Branch BrPart  Cover   Missing
-------------------------------------------------------------------------
transaction.py                   14      0      0      0   100%
transaction/_compat.py           14      0      0      0   100%
transaction/_manager.py         124      0     56      1    99%   181->exit
transaction/_transaction.py     393      0    116      0   100%
transaction/interfaces.py         7      0      0      0   100%
transaction/weakset.py           22      0      4      0   100%
-------------------------------------------------------------------------
TOTAL                           574      0    176      1    99%
nose.plugins.cover: ERROR: TOTAL Coverage did not reach minimum required: 100%

Doctest repr:

Document: convenience
---------------------
**********************************************************************
File "convenience.rst", line 30, in default
Failed example:
    dm.last_note
Expected:
    'test 3'
Got:
    u'test 3'
**********************************************************************
1 items had failures:
   1 of   8 in default
8 tests in 1 items.
7 passed and 1 failed.
***Test Failed*** 1 failures.
jimfulton commented 8 years ago

I just fixed the doctest failure.

Jim

On Fri, Nov 11, 2016 at 3:13 PM, Tres Seaver notifications@github.com wrote:

From: http://jenkins.pylonsproject.org/job/transaction/58/console

Coverage gap:

coverage inst-nodeps: /home/agendaless/jenkins/pylonsproject/jobs/transaction/workspace/.tox/dist/transaction-1.7.0.zip coverage installed: coverage==4.2,funcsigs==1.0.2,mock==2.0.0,nose==1.3.7,nosexcover==1.0.10,pbr==1.10.0,six==1.10.0,transaction==1.7.0,zope.interface==4.3.2 coverage runtests: PYTHONHASHSEED='1290084312' coverage runtests: commands[0] | nosetests --with-xunit --with-xcoverage................................................................................................................................................................................... Name Stmts Miss Branch BrPart Cover Missing------------------------------------------------------------------------- transaction.py 14 0 0 0 100% transaction/_compat.py 14 0 0 0 100% transaction/_manager.py 124 0 56 1 99% 181->exit transaction/_transaction.py 393 0 116 0 100% transaction/interfaces.py 7 0 0 0 100% transaction/weakset.py 22 0 4 0 100%-------------------------------------------------------------------------TOTAL 574 0 176 1 99% nose.plugins.cover: ERROR: TOTAL Coverage did not reach minimum required: 100%

Doctest repr:

Document: convenience---------------------** File "convenience.rst", line 30, in default Failed example: dm.last_note Expected: 'test 3' Got: u'test 3'*****_1 items had failures: 1 of 8 in default8 tests in 1 items.7 passed and 1 failed._Test Failed* 1 failures.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/zopefoundation/transaction/issues/29, or mute the thread https://github.com/notifications/unsubscribe-auth/AAvKd2URnkPAX6IyNMdNCbEulFR4eupJks5q9Mx3gaJpZM4KwGWA .

Jim Fulton http://jimfulton.info

jimfulton commented 8 years ago

I updated the travis config to run the docs doctests.

https://github.com/zopefoundation/transaction/pull/30

Jim

On Fri, Nov 11, 2016 at 3:30 PM, Jim Fulton jim@jimfulton.info wrote:

I just fixed the doctest failure.

Jim

On Fri, Nov 11, 2016 at 3:13 PM, Tres Seaver notifications@github.com wrote:

From: http://jenkins.pylonsproject.org/job/transaction/58/console

Coverage gap:

coverage inst-nodeps: /home/agendaless/jenkins/pylonsproject/jobs/transaction/workspace/.tox/dist/transaction-1.7.0.zip coverage installed: coverage==4.2,funcsigs==1.0.2,mock==2.0.0,nose==1.3.7,nosexcover==1.0.10,pbr==1.10.0,six==1.10.0,transaction==1.7.0,zope.interface==4.3.2 coverage runtests: PYTHONHASHSEED='1290084312' coverage runtests: commands[0] | nosetests --with-xunit --with-xcoverage................................................................................................................................................................................... Name Stmts Miss Branch BrPart Cover Missing------------------------------------------------------------------------- transaction.py 14 0 0 0 100% transaction/_compat.py 14 0 0 0 100% transaction/_manager.py 124 0 56 1 99% 181->exit transaction/_transaction.py 393 0 116 0 100% transaction/interfaces.py 7 0 0 0 100% transaction/weakset.py 22 0 4 0 100%-------------------------------------------------------------------------TOTAL 574 0 176 1 99% nose.plugins.cover: ERROR: TOTAL Coverage did not reach minimum required: 100%

Doctest repr:

Document: convenience---------------------** File "convenience.rst", line 30, in default Failed example: dm.last_note Expected: 'test 3' Got: u'test 3'*****_1 items had failures: 1 of 8 in default8 tests in 1 items.7 passed and 1 failed._Test Failed* 1 failures.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/zopefoundation/transaction/issues/29, or mute the thread https://github.com/notifications/unsubscribe-auth/AAvKd2URnkPAX6IyNMdNCbEulFR4eupJks5q9Mx3gaJpZM4KwGWA .

Jim Fulton http://jimfulton.info

Jim Fulton http://jimfulton.info

icemac commented 7 years ago

There is now a new failure because the test coverage is not 100 %. See http://jenkins.pylonsproject.org/job/transaction/81/console

tseaver commented 7 years ago

100% coverage is being worked on in #46.

icemac commented 7 years ago

Coverage was fixed in #46.