See
<https://ci-builds.apache.org/job/Allura/job/Allura-py3.7/36/display/redirect?page=changes>
Changes:
[dbrondsema] [#8246] Upgrade beautifulsoup4 4.10.0 -> 4.11.0, and its deps:
soupsieve
[dbrondsema] [#8246] Upgrade colander 1.8.3 -> no upgrade, and its deps:
iso8601,setuptools,translationstring
[dbrondsema] [#8246] Upgrade cryptography 35.0.0 -> 36.0.2, and its deps:
cffi,pycparser
[dbrondsema] [#8246] Upgrade decorator 5.1.0 -> 5.1.1
[dbrondsema] [#8246] Upgrade emoji 1.5.0 -> 1.7.0
[dbrondsema] [#8246] Upgrade feedgenerator 2.0.0 -> no upgrade, and its deps:
pytz
[dbrondsema] [#8246] Upgrade GitPython 3.1.18 -> 3.1.27, and its deps:
gitdb,smmap,typing-extensions
[dbrondsema] [#8246] Upgrade markdown 3.3.6 -> no upgrade, and its deps:
importlib-metadata,typing-extensions,zipp
[dbrondsema] [#8246] Upgrade PasteDeploy 2.0.1 -> 2.1.1
[dbrondsema] [#8246] Upgrade PasteScript 3.1.0 -> 3.2.1, and its deps:
paste,setuptools,six,PasteDeploy,six
[dbrondsema] [#8246] Upgrade Pillow 9.0.1 -> 9.1.0
[dbrondsema] [#8246] Upgrade Pygments 2.8.1 -> 2.11.2
[dbrondsema] [#8246] Upgrade Pypeline 0.5.3 -> no upgrade, and its deps:
bleach,packaging,pyparsing,six,webencodings,html5lib,six,webencodings,Creoleparser,Genshi,six,markdown,importlib-metadata,typing-extensions,zipp,textile,html5lib,six,webencodings,six,docutils
[dbrondsema] [#8246] Upgrade pysolr 3.9.0 -> no upgrade, and its deps:
requests,certifi,charset-normalizer,idna,urllib3
[dbrondsema] [#8246] Upgrade python-magic 0.4.24 -> 0.4.25
[dbrondsema] [#8246] Upgrade qrcode 6.1 -> 7.3.1, and its deps: six
[dbrondsema] [#8246] Upgrade regex-as-re-globally 0.0.2 -> no upgrade, and its
deps: regex
[dbrondsema] [#8246] Upgrade requests-oauthlib 1.2.0 -> 1.3.1, and its deps:
oauthlib,requests,certifi,charset-normalizer,idna,urllib3
[dbrondsema] [#8246] Upgrade TimerMiddleware 0.5.2 -> no upgrade, and its deps:
future,webob
[dbrondsema] [#8246] Upgrade Werkzeug 2.0.2 -> 2.1.1
[dbrondsema] [#8246] Upgrade wrapt 1.11.2 -> 1.14.0
[dbrondsema] [#8246] Upgrade mock 3.0.5 -> 4.0.3, and its deps: six
[dbrondsema] [#8246] Upgrade testfixtures 6.10.0 -> 6.18.5
[dbrondsema] [#8246] pypeline upgrade to go with bleach upgrade
------------------------------------------
[...truncated 326.00 KB...]
stderr: 'fatal: unsafe repository
('/allura/ForgeGit/forgegit/tests/data/testrename.git' is owned by someone else)
To add an exception for this directory, call:
git config --global --add safe.directory
/allura/ForgeGit/forgegit/tests/data/testrename.git'
--------------------- >> end captured logging << ---------------------
======================================================================
FAIL: test_tags (forgegit.tests.model.test_repository.TestGitImplementation)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 993, in
test_tags
object_id='1e146e67985dcd71c74de79613719bef7bddca4a'),
AssertionError: Lists differ: [] != [{'name': 'foo', 'object_id':
'1e146e67985dcd71c74de79613719bef7bddca4a'}]
Second list contains 1 additional elements.
First extra element 0:
{'name': 'foo', 'object_id': '1e146e67985dcd71c74de79613719bef7bddca4a'}
- []
+ [{'name': 'foo', 'object_id': '1e146e67985dcd71c74de79613719bef7bddca4a'}]
======================================================================
FAIL: test_renamed_file (forgegit.tests.model.test_repository.TestGitRename)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 1157,
in test_renamed_file
self.assertEqual(len(commits), 4)
AssertionError: 0 != 4
======================================================================
FAIL: test_commit_artifact_references
(forgegit.tests.model.test_repository.TestGitRepo)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 491, in
test_commit_artifact_references
assert ref
AssertionError
======================================================================
FAIL: test_default_branch_invalid
(forgegit.tests.model.test_repository.TestGitRepo)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 629, in
test_default_branch_invalid
assert_equal(self.repo.get_default_branch('master'), 'master')
File "/allura/AlluraTest/alluratest/tools.py", line 49, in assert_equal
return testcase.assertEqual(*a, **kw)
AssertionError: 'zz' != 'master'
- zz
+ master
======================================================================
FAIL: test_default_branch_non_standard_invalid
(forgegit.tests.model.test_repository.TestGitRepo)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 621, in
test_default_branch_non_standard_invalid
assert_equal(self.repo.get_default_branch('master'), 'foo')
File "/allura/AlluraTest/alluratest/tools.py", line 49, in assert_equal
return testcase.assertEqual(*a, **kw)
AssertionError: 'zz' != 'foo'
- zz
+ foo
======================================================================
FAIL: test_default_branch_non_standard_unset
(forgegit.tests.model.test_repository.TestGitRepo)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 613, in
test_default_branch_non_standard_unset
assert_equal(self.repo.get_default_branch('master'), 'foo')
File "/allura/AlluraTest/alluratest/tools.py", line 49, in assert_equal
return testcase.assertEqual(*a, **kw)
AssertionError: 'master' != 'foo'
- master
+ foo
======================================================================
FAIL: test_is_empty (forgegit.tests.model.test_repository.TestGitRepo)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 591, in
test_is_empty
assert not self.repo.is_empty()
AssertionError
======================================================================
FAIL: test_log (forgegit.tests.model.test_repository.TestGitRepo)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 316, in
test_log
'rename_details': {}},
File "/allura/AlluraTest/alluratest/tools.py", line 49, in assert_equal
return testcase.assertEqual(*a, **kw)
AssertionError: Lists differ: [] != [{'authored': {'date':
datetime.datetime(2[1656 chars] {}}]
Second list contains 4 additional elements.
First extra element 0:
{'authored': {'date': datetime.datetime(2010, 10, 7, 18, 44, 11), 'email':
'[email protected]', 'name': 'Rick Copeland'}, 'committed': {'date':
datetime.datetime(2010, 10, 7, 18, 44, 11), 'email': '[email protected]',
'name': 'Rick Copeland'}, 'id': '1e146e67985dcd71c74de79613719bef7bddca4a',
'message': 'Change README\n', 'parents':
['df30427c488aeab84b2352bdf88a3b19223f9d7a'], 'refs': ['HEAD', 'foo',
'master'], 'size': None, 'rename_details': {}}
Diff is 2112 characters long. Set self.maxDiff to None to see it.
======================================================================
FAIL: test_log_file (forgegit.tests.model.test_repository.TestGitRepo)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 349, in
test_log_file
'rename_details': {}},
File "/allura/AlluraTest/alluratest/tools.py", line 49, in assert_equal
return testcase.assertEqual(*a, **kw)
AssertionError: Lists differ: [] != [{'authored': {'date':
datetime.datetime(2[831 chars] {}}]
Second list contains 2 additional elements.
First extra element 0:
{'authored': {'date': datetime.datetime(2010, 10, 7, 18, 44, 11), 'email':
'[email protected]', 'name': 'Rick Copeland'}, 'committed': {'date':
datetime.datetime(2010, 10, 7, 18, 44, 11), 'email': '[email protected]',
'name': 'Rick Copeland'}, 'id': '1e146e67985dcd71c74de79613719bef7bddca4a',
'message': 'Change README\n', 'parents':
['df30427c488aeab84b2352bdf88a3b19223f9d7a'], 'refs': ['HEAD', 'foo',
'master'], 'size': 28, 'rename_details': {}}
Diff is 1085 characters long. Set self.maxDiff to None to see it.
======================================================================
FAIL: test_log_id_only (forgegit.tests.model.test_repository.TestGitRepo)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 264, in
test_log_id_only
'9a7df788cf800241e3bb5a849c8870f2f8259d98'])
File "/allura/AlluraTest/alluratest/tools.py", line 49, in assert_equal
return testcase.assertEqual(*a, **kw)
AssertionError: Lists differ: [] !=
['1e146e67985dcd71c74de79613719bef7bddca4a[129 chars]d98']
Second list contains 4 additional elements.
First extra element 0:
'1e146e67985dcd71c74de79613719bef7bddca4a'
- []
+ ['1e146e67985dcd71c74de79613719bef7bddca4a',
+ 'df30427c488aeab84b2352bdf88a3b19223f9d7a',
+ '6a45885ae7347f1cac5103b0050cc1be6a1496c8',
+ '9a7df788cf800241e3bb5a849c8870f2f8259d98']
======================================================================
FAIL: test_refresh (forgegit.tests.model.test_repository.TestGitRepo)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 378, in
test_refresh
assert notification
AssertionError
======================================================================
FAIL: test_webhook_payload (forgegit.tests.model.test_repository.TestGitRepo)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/allura/ForgeGit/forgegit/tests/model/test_repository.py", line 710, in
test_webhook_payload
assert_equals(payload, expected_payload)
File "/allura-data/virtualenv/lib/python3.7/site-packages/datadiff/tools.py",
line 34, in assert_equal
raise AssertionError(msg)
AssertionError:
--- a
+++ b
{
-'after': '',
+'after': '5c47243c8e424136fd5cdd18cd94d34c66d1955c',
-'before': '',
+'before': 'df30427c488aeab84b2352bdf88a3b19223f9d7a',
'commits': [
@@ -0 +0,1 @@
+{'id': '5c47243c8e424136fd5cdd18cd94d34c66d1955c', 'url':
'http://localhost/p/test/src-git/ci/5c47243c8e424136fd5cdd18cd94d34c66d1955c/',
'timestamp': datetime.datetime(2013, 3, 28, 18, 54, 16), 'message': 'Not repo
root', 'author': {'name': 'Cory Johns', 'email': '[email protected]',
'username': 'cory'}, 'committer': {'name': 'Cory Johns', 'email':
'[email protected]', 'username': 'cory'}, 'added': ['bad'], 'removed':
[], 'modified': [], 'copied': [], 'renamed': []},
+{'id': '1e146e67985dcd71c74de79613719bef7bddca4a', 'url':
'http://localhost/p/test/src-git/ci/1e146e67985dcd71c74de79613719bef7bddca4a/',
'timestamp': datetime.datetime(2010, 10, 7, 18, 44, 11), 'message': 'Change
README', 'author': {'name': 'Rick Copeland', 'email': '[email protected]',
'username': 'rick'}, 'committer': {'name': 'Rick Copeland', 'email':
'[email protected]', 'username': 'rick'}, 'added': [], 'removed': [],
'modified': ['README'], 'copied': [], 'renamed': []},
],
'ref': 'refs/heads/zz',
'repository': {'name': 'Git', 'full_name': '/p/test/src-git/', 'url':
'http://localhost/p/test/src-git/'},
-'size': 0,
+'size': 2,
}
----------------------------------------------------------------------
Ran 156 tests in 325.564s
FAILED (errors=55, failures=41)
Exception ignored in: <function Git.AutoInterrupt.__del__ at 0x7f283d8360e0>
Traceback (most recent call last):
File "/allura-data/virtualenv/lib/python3.7/site-packages/git/cmd.py", line
465, in __del__
File "/allura-data/virtualenv/lib/python3.7/site-packages/git/cmd.py", line
430, in _terminate
BrokenPipeError: [Errno 32] Broken pipe
Exception ignored in: <function Git.AutoInterrupt.__del__ at 0x7f283d8360e0>
Traceback (most recent call last):
File "/allura-data/virtualenv/lib/python3.7/site-packages/git/cmd.py", line
465, in __del__
File "/allura-data/virtualenv/lib/python3.7/site-packages/git/cmd.py", line
430, in _terminate
BrokenPipeError: [Errno 32] Broken pipe
Exception ignored in: <function Git.AutoInterrupt.__del__ at 0x7f283d8360e0>
Traceback (most recent call last):
File "/allura-data/virtualenv/lib/python3.7/site-packages/git/cmd.py", line
465, in __del__
File "/allura-data/virtualenv/lib/python3.7/site-packages/git/cmd.py", line
430, in _terminate
BrokenPipeError: [Errno 32] Broken pipe
finished `nosetests --with-xunitmp ` in ForgeGit
.......................................................................................
----------------------------------------------------------------------
Ran 87 tests in 327.369s
OK
finished `nosetests --with-xunitmp ` in ForgeSVN
....................................................................................................................................................................................................................................................................................................................................................S.............................................................................................................................................................................................................................................................................../allura-data/virtualenv/lib/python3.7/site-packages/bs4/__init__.py:439:
MarkupResemblesLocatorWarning: The input looks more like a filename than
markup. You may want to open this file and pass the filehandle into Beautiful
Soup.
MarkupResemblesLocatorWarning
....................SSSSSSSS..........................................................................................................................................................................................S.............................................................................................................................../allura-data/virtualenv/lib/python3.7/site-packages/bs4/__init__.py:439:
MarkupResemblesLocatorWarning: The input looks more like a filename than
markup. You may want to open this file and pass the filehandle into Beautiful
Soup.
MarkupResemblesLocatorWarning
......................................................................................................................................................................................................................................................................................
----------------------------------------------------------------------
Ran 1232 tests in 397.915s
OK (SKIP=10)
finished `nosetests allura/tests/ --with-xunitmp --processes=4
--process-timeout=360` in Allura
1
=============================================================================
Shutdown
=============================================================================
Stopping allura_mongo_1 ...
Stopping allura_solr_1 ...
Stopping allura_mongo_1 ... done
Stopping allura_solr_1 ... done
Removing allura_web_run_872be05fc725 ...
Removing allura_web_run_86ef9ad28b96 ...
Removing allura_web_run_ffed409e6914 ...
Removing allura_web_run_bfc964b2d35b ...
Removing allura_web_run_9f02823fcb97 ...
Removing allura_web_run_4bf2a4fd9936 ...
Removing allura_mongo_1 ...
Removing allura_solr_1 ...
Removing allura_web_run_ffed409e6914 ... done
Removing allura_mongo_1 ... done
Removing allura_web_run_86ef9ad28b96 ... done
Removing allura_web_run_9f02823fcb97 ... done
Removing allura_web_run_4bf2a4fd9936 ... done
Removing allura_web_run_bfc964b2d35b ... done
Removing allura_solr_1 ... done
Removing allura_web_run_872be05fc725 ... done
Removing network allura_default
Total reclaimed space: 0B
Deleted Volumes:
c5396e97440505803e90e301999b57a9cabd7ac47a4287a90e5258a79278649f
c9d61a161b07c9d2ad45431b5f776a30b4deb951a0f008c51ec928a891e947d2
cca91940644d5db6f34675b3e729c6c8bf6b56601246011b4918f3873cfaef13
e5866d0f021b4e9c2cc90ddecd0106d7bbfa0ff1afb13adfc7232fcb8aa9306a
e83fddca87742ac98870fb932c242978011baefe9f2789ca2fa999c29bfaa451
d3a881ebeaf2498075ddb592ca796f25d91daa6d9efb0cbed5f32e15f0f5574d
8c0a16e72010e7a4358e6029c9fb58eb9adee9b3f9c1ba41e2d5f59cc57d9cf7
Total reclaimed space: 84.37kB
Build step 'Execute shell' marked build as failure
Recording test results
[Checks API] No suitable checks publisher found.
Publishing Clover coverage report...
No Clover report will be published due to a build Failure