You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@allura.apache.org by Apache Jenkins Server <je...@builds.apache.org> on 2022/12/08 17:41:43 UTC

Build failed in Jenkins: Allura » Allura-py3.7 #166

See <https://ci-builds.apache.org/job/Allura/job/Allura-py3.7/166/display/redirect?page=changes>

Changes:

[dbrondsema] upgrade certifi


------------------------------------------
[...truncated 162.70 KB...]
    result = func(obj, *args, **kwargs)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/odmsession.py:103: in flush
    self.uow.flush()
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/unit_of_work.py:44: in flush
    inow(obj, st)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/base.py:35: in inner
    result = func(obj, *args, **kwargs)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/odmsession.py:115: in insert_now
    mapper(obj).insert(obj, st, self, **kwargs)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/base.py:35: in inner
    result = func(obj, *args, **kwargs)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/mapper.py:80: in insert
    ret = session.impl.insert(doc, validate=False)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/session.py:23: in wrapper
    return func(self, doc, *args, **kwargs)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/session.py:169: in insert
    bson = self._impl(doc).insert(data, **fix_write_concern(kwargs))
/allura-data/virtualenv/lib/python3.7/site-packages/ming/mim.py:459: in insert
    return self.__insert(doc_or_docs, manipulate, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = mim.Collection(mim.Database(allura), repo_ci)
doc_or_docs = [{'_id': None, 'authored': {'name': None, 'email': None, 'date': None}, 'child_ids': [], 'committed': {'name': None, 'email': None, 'date': None}, ...}]
manipulate = True, kwargs = {}, result = [None]
doc = {'_id': None, 'authored': {'name': None, 'email': None, 'date': None}, 'child_ids': [], 'committed': {'name': None, 'email': None, 'date': None}, ...}
_id = None

    def __insert(self, doc_or_docs, manipulate=True, **kwargs):
        result = []
        if not isinstance(doc_or_docs, list):
            doc_or_docs = [ doc_or_docs ]
        for doc in doc_or_docs:
            if not manipulate:
                doc = bcopy(doc)
            bson_safe(doc)
            _id = doc.get('_id', ())
            if _id == ():
                _id = doc['_id'] = bson.ObjectId()
            result.append(_id)
            if _id in self._data:
                if kwargs.get('w', 1):
>                   raise DuplicateKeyError('duplicate ID on insert')
E                   pymongo.errors.DuplicateKeyError: ('duplicate ID on insert', "doc:  {'_id': None, 'authored': {'name': None, 'email': None, 'date': None}, 'child_ids': [], 'committed': {'name': None, 'email': None, 'date': None}, 'message': None, 'parent_ids': [], 'repo_ids': [], 'tree_id': None}")

/allura-data/virtualenv/lib/python3.7/site-packages/ming/mim.py:451: DuplicateKeyError
_ ERROR at setup of TestIndexWithAPostInTheDiscussion.test_deleted_post_not_shown _
[gw3] linux -- Python 3.7.16 /allura-data/virtualenv/bin/python3.7

self = <allura.tests.unit.controllers.test_discussion_moderation_controller.TestIndexWithAPostInTheDiscussion object at 0x7fc31a671990>
method = <bound method TestIndexWithAPostInTheDiscussion.test_deleted_post_not_shown of <allura.tests.unit.controllers.test_discussion_moderation_controller.TestIndexWithAPostInTheDiscussion object at 0x7fc31a671990>>

    def setup_method(self, method):
>       super().setup_method(method)

allura/tests/unit/controllers/test_discussion_moderation_controller.py:88: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
allura/tests/unit/__init__.py:42: in setup_method
    super().setup_method(method)
allura/tests/unit/__init__.py:30: in setup_method
    self._patch_instances = [patch_fn(self) for patch_fn in self.patches]
allura/tests/unit/__init__.py:30: in <listcomp>
    self._patch_instances = [patch_fn(self) for patch_fn in self.patches]
allura/tests/unit/patches.py:29: in fake_app_patch
    project = create_project('myproject')
allura/tests/unit/factories.py:30: in new_fn
    result = fn(*args, **kwargs)
allura/tests/unit/factories.py:38: in create_project
    neighborhood = create_neighborhood()
allura/tests/unit/factories.py:31: in new_fn
    ThreadLocalORMSession.flush_all()
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/odmsession.py:419: in flush_all
    sess.flush()
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/base.py:35: in inner
    result = func(obj, *args, **kwargs)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/odmsession.py:103: in flush
    self.uow.flush()
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/unit_of_work.py:44: in flush
    inow(obj, st)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/base.py:35: in inner
    result = func(obj, *args, **kwargs)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/odmsession.py:115: in insert_now
    mapper(obj).insert(obj, st, self, **kwargs)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/base.py:35: in inner
    result = func(obj, *args, **kwargs)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/odm/mapper.py:80: in insert
    ret = session.impl.insert(doc, validate=False)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/session.py:23: in wrapper
    return func(self, doc, *args, **kwargs)
/allura-data/virtualenv/lib/python3.7/site-packages/ming/session.py:169: in insert
    bson = self._impl(doc).insert(data, **fix_write_concern(kwargs))
/allura-data/virtualenv/lib/python3.7/site-packages/ming/mim.py:459: in insert
    return self.__insert(doc_or_docs, manipulate, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = mim.Collection(mim.Database(allura), repo_ci)
doc_or_docs = [{'_id': None, 'authored': {'name': None, 'email': None, 'date': None}, 'child_ids': [], 'committed': {'name': None, 'email': None, 'date': None}, ...}]
manipulate = True, kwargs = {}, result = [None]
doc = {'_id': None, 'authored': {'name': None, 'email': None, 'date': None}, 'child_ids': [], 'committed': {'name': None, 'email': None, 'date': None}, ...}
_id = None

    def __insert(self, doc_or_docs, manipulate=True, **kwargs):
        result = []
        if not isinstance(doc_or_docs, list):
            doc_or_docs = [ doc_or_docs ]
        for doc in doc_or_docs:
            if not manipulate:
                doc = bcopy(doc)
            bson_safe(doc)
            _id = doc.get('_id', ())
            if _id == ():
                _id = doc['_id'] = bson.ObjectId()
            result.append(_id)
            if _id in self._data:
                if kwargs.get('w', 1):
>                   raise DuplicateKeyError('duplicate ID on insert')
E                   pymongo.errors.DuplicateKeyError: ('duplicate ID on insert', "doc:  {'_id': None, 'authored': {'name': None, 'email': None, 'date': None}, 'child_ids': [], 'committed': {'name': None, 'email': None, 'date': None}, 'message': None, 'parent_ids': [], 'repo_ids': [], 'tree_id': None}")

/allura-data/virtualenv/lib/python3.7/site-packages/ming/mim.py:451: DuplicateKeyError
------------- generated xml file: /allura/Allura/pytest.junit.xml --------------
=========================== short test summary info ============================
ERROR allura/tests/unit/controllers/test_discussion_moderation_controller.py::TestWhenModerating::test_that_it_can_approve
ERROR allura/tests/unit/controllers/test_discussion_moderation_controller.py::TestWhenModerating::test_that_it_can_mark_as_spam
ERROR allura/tests/unit/controllers/test_discussion_moderation_controller.py::TestWhenModerating::test_that_it_can_be_deleted
ERROR allura/tests/unit/controllers/test_discussion_moderation_controller.py::TestIndexWithNoPosts::test_that_it_returns_no_posts
ERROR allura/tests/unit/controllers/test_discussion_moderation_controller.py::TestIndexWithAPostInTheDiscussion::test_that_it_returns_posts
ERROR allura/tests/unit/controllers/test_discussion_moderation_controller.py::TestIndexWithAPostInTheDiscussion::test_that_it_sets_paging_metadata
ERROR allura/tests/unit/controllers/test_discussion_moderation_controller.py::TestIndexWithAPostInTheDiscussion::test_deleted_post_not_shown
==== 1223 passed, 10 skipped, 5357 warnings, 7 errors in 256.71s (0:04:16) =====
finished `pytest allura/tests/ --disable-warnings --junit-xml=pytest.junit.xml -n 4 --dist loadfile` in Allura, with returncode: 1
.........................                                                [100%]

------------ generated xml file: /allura/ForgeGit/pytest.junit.xml -------------
================ 153 passed, 3465 warnings in 279.93s (0:04:39) ================
finished `pytest  --disable-warnings --junit-xml=pytest.junit.xml ` in ForgeGit, with returncode: 0
..............................................................           [100%]
---------- generated xml file: /allura/ForgeTracker/pytest.junit.xml -----------
================ 206 passed, 2542 warnings in 382.39s (0:06:22) ================
finished `pytest  --disable-warnings --junit-xml=pytest.junit.xml -n 4 --dist loadfile` in ForgeTracker, with returncode: 0

=============================================================================
Shutdown
=============================================================================
Stopping allura_web_1  ... 
Stopping allura_solr_1 ... 
Stopping allura_web_1  ... done
Stopping allura_solr_1 ... done
Removing allura_web_1                ... 
Removing allura_web_run_fbfc6383b99a ... 
Removing allura_mongo_1              ... 
Removing allura_solr_1               ... 
Removing allura_mongo_1              ... done
Removing allura_web_run_fbfc6383b99a ... done
Removing allura_solr_1               ... done
Removing allura_web_1                ... done
Removing network allura_default
Deleted Containers:
bce036dc3a451a594ba278788d3266584a50e07ec73c08b180c3ed4cce39400a
ce8825a6b26a049b706baadc9b94ca3c4b1f2dc926d208ed2b2e13cfc4d4201f

Total reclaimed space: 108.1MB
Deleted Volumes:
38241f660bd585a43cc0730209c7b0963ca1fdb629e2e6dadf17e89eea1765eb
3cb09301fe1e640ddb6318f519908fa63ecde2fcb54329bd7a1868ddcb08daee
3fb1aeb8d1a9bacdf6c275ffc528f29b94d2dfc3f7d7b9148b5845d4473f21e4
41cd04f88007ca03ba689fa8186f9b9ed07036f40f82bcc8fdf5d448b7e3dba2
c35b8f65720a711f9e403bde9d1a48b4bbec33509b5b1ebd0f89d72285933fa2
c9faf223e597e04b3eaccc61ca2db24042a33d2b36830404140166f3c81c2cef
043c398dd331523c16205223b7391adb70f6d9457f096d421ff4fc838b82fd21
30b8df32157950da266002e7af4325851f1f8edc98a57ac6f71a2486b14514c1
cc68abb3fc9b33ee9336d47fe02a83d1b3cd47b887618ff1333e017f4f6718cf
f74bb1d66df70cee5199cbe450dc242cc3a1e4aec3dbe469322f627bcd9c0451
99f7f6f6dcca89997d48fd815fe21d3c2c8abe0ad1ac152b30c6130b40cc8ba6
d0e39c9de1709d9c368c66d6cd4e9df891f7af6ea49b746720383ea28122cc89
f806aeb3269f7c3ea1c3022aff77a21bf8de01d7ba91a9b5e5350e341b3ad9e6
19df0ae27ae039300e722fe00611a11d9a62f084d00bc6c56cb592772d02c45f
63adf7637a3c90c0f11c992e03fb2e901a6f60598d759c2b1e19da3b92f552c8
21fdd219ac2e9792927560c332ae07818790a9840da9946f095f44ac6004fcc1
801cbf63ed8a186a77c9cf4f2fb5081aff1dce7295485dea21e3708e770b0dee
buildx_buildkit_maven0_state
cdd5aea2a4ca5eab31b0840aabe29fe8d0c37f642c1b94c42c80e6578f584fbf
11581487c3a1f138e7e74e842aa41d0c21df12a34b55c313700a4a95f49d0796
1aa0e0b03e215001ed4ffc077558bb6622f566b8efd461fe6582dca519aa9be8
48e22c430f147c70a394701f822518caadea7eea6c56df32c96a76a0958a13c8
a737cb94c68193f07f24edc832e114259cfd53ab5f29a928e7f18170f848d9a3
e047b1fbacf12df9542e5842aa38c0d36baf16fa098df996aecccd5775380583
0b3c96410f3f6d16e9b78d6cb9b48f68b754b6e169e5e7e802e7467f63af8a7f
2d920a066cbd72d15ddea73ffc6182e7b2c6201bf7e5da9dba4b854c2e0145b3
10e3c7ebfec0746351d1e845da172a06e3247f555984539e5d755e1982ecf688
6ce45177210f0b68bea57d0a65ad141e78fbf2d0fa602b72c7c43146c44e486f
90e3ff038b4108155ae79250d6a6f2a5e339666a319c2ab943f127dc5bf9d38c
08831a39a7ae2715c74452b659b2d92fa782991e6b0d72f2bfeac46b38ebc72d
0db728d1d9b727548b36567c0f736fba57e5bddb33198e4dfa775798d839942d
bc4882e958faf92d1086877a53b35532dc3cd19e4fa3535587605bd96fd37aa0
d4bc31234d26cbce6db010b9f1dd29394b4fb122b3040694b5bc46bee4012593
f0a281a09a88900babc3643d752434f084abd6ae24749ab33465f8325478d16b
f93f90d60a25de6fdf62f7fdc9803d2c8d6e83f0e259fe2c2e2d2efd2a038ec1
361f2e1cd363e11fc5337d9d2e2a1481d36e3bcf5e8720319994a350bbefab12
3fd9081ec114202b5733ef956768cb519feb416013ce18786f64e949cb0578a3
988a1707100314ac493d58e3cdd882dfea3ceb42c89f67c787f852d98e139709
419e80848ce5d1d96ad868b3ad9b6dfb82eaa8468fd88ad883c31ec2f739b39c
90d3860fd9b6281c45a3225eef908767cbd6b43ca92e8c67a3717424b534d318
c467b0ac84afa3ce7c35088c3badfd411cd19c2e003e15642c969cc7707c4349
e2f8554c6bed8e557c1ad1285bc7085f66d65960c45956f58d99d4a10cf9cc59
1557ead653aaa24b8a449cd5e34d076e30c9cb7eed657fbc07ab3300af534b05
ad0267fdb1ce5bcdfc26eb6b1db9c7e146ea5ab9eb50b96d857e5fbea9594b05
70d12e243ee0e190f9be19e55069b342ae3dabd4d2ead83b12b12a2ee8da6ef6
ea0fbea262d3f362ee99571f96dbb9eff3214d68bc3a1c961716e06d00a8b3dc
0ed4d2ee02a985e3ba980a27900e27de320bc160e0c564b7a2b930c30add1c89
4742295249a042c1387da4536ee337137417317b5e004e427fb34bfca7cde9b4
987d21801183ca2b56573cd7b0221a904704712bdaec26f81cb1431eefdd95b3
5293a23a23922c85c4ff1197cd900d0e4a10b5bf99bf7078a4ed0c4d38ae6a4e
94a12449d979b58e2a3173bc90f8e4b0b7692b9928a4e501b10a3f79e9f577f9
b2fc3bf5dbe75d04d36c9016aa1361a21e1a22d27509e62b07fa5dbabfbfb145
79513fbfc536b02513694d8100ae200eac46665be223076f4a505b53f14811e2
996c574f2f596bcc6808758e1c622c1a57d4fd39cc09de86cf2c7b278e42c556
d3a952021a7821546dc12320153678e168864c872b078a96764965b88dfd0e06
0846f8472571618fdc1ffdb047c33f94293238eacda0ee4f4d8dace9bb17c212
0c5c5ef834f450b3903d4fc8c5bb47f1a6246d7cf117557ef3346a8d7c8c7b2f
6c72f2d816c840a7d62a62ae07a036163e425feba62961cc3e7935e37a00e773
90291e721bd05b0d0585267feff96291262982a1090b4d0f8e82301ccbb8c1e5
35c6b7f9ebe0fb2101319de7171e68aa52b8d5d2ba10b709827441e95f1f08ad
6c58a2be6dbe8e2b7561a6eaf2a73bd27222f7b521ca4f63ab7d8a70722897b3
37a7b9ce98fa1924d8207443c9aba1a6b5166c38f761fb232b0f3e3455386390
58ef13abc66452c70981d8101a4d9d6355e6ffde51b968ac93748941747e7a75
a5170f46a31b1e86685689b5f132844930ababce64d468942fd79824fb0de918
bff6b69e692611110b074a43d6c59081bb19498eafe821a9444259445756b4b3
d98794d20ad1718dea491f12da540aac2834bcf72d9c879046cabcbf847d60bc
d55a52f5695b4d6812368fee3ad2943610c9776473feb3a45d79e7b521a30b0f
21622d54936aa49dfc51e05cc40d4747e6c15eaa884f9f86f151b6b6c56bf0e5
2867b801402eb84699fbc8f1fb213342c0ed768d33adf300149c0d3450bef48e
50f7cf9f9e5a2d856020a9210eda15aec3f53bf5d4f7a767ec0298a6c9ee7cbd
58e5abccde927c3652bc47602f0089a43ece20e01777d505cd5191095204778c
9e8baadea23bbafe43ec08cddbdb670dab7a38e0f569ead356addff05ef3d13e
b717c02145acd3d0021907aaa8c0fc2765e6b3454dfbd05c714597496687f3bc
febb900339c34742005ac8e50622404ff1475cad819481c6faa5d1cf5f3c0e5b
07703b7f21fc43f1e09d921a6ef07e871062b023136eca892f251420f01e331e
2f4a7ad5b52816d1711ae840eeea7047de9353d260f9814c2a858480e3736837
38ce06bb9a0773b4e7b58ad445e91aecef9662e5e874c7af301d5cf532d7ae97
499807d2a0eff5f42e1f0ebc180ecf5b2a35fb9cb9ef90fcc00cd8260651fb4c
91db1a686038892791bd19e2701d212bcbccddcff3b4deb5dc756836db750253
1f6b9ac2fe31fbfe1e3c84b922baab954e4775f6cb06b8bc5a59f25726865d6f
33d9f02181f7366bfc6b4b6b892780704c505a060d08d014a8ad5fc492d5ea99

Total reclaimed space: 12.68GB
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

Jenkins build is back to normal : Allura » Allura-py3.7 #169

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://ci-builds.apache.org/job/Allura/job/Allura-py3.7/169/display/redirect?page=changes>


Build failed in Jenkins: Allura » Allura-py3.7 #168

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://ci-builds.apache.org/job/Allura/job/Allura-py3.7/168/display/redirect?page=changes>

Changes:

[ktaylor] Move GA snippet down slightly


------------------------------------------
[...truncated 8.93 KB...]
 ---> 44e44285f6fc
Step 13/21 : RUN a2enmod cgi proxy proxy_http
 ---> Using cache
 ---> cd7e6cf9b21d
Step 14/21 : ADD ./git-http.conf /etc/apache2/sites-available/
 ---> Using cache
 ---> 635dd23fdd4a
Step 15/21 : RUN a2dissite 000-default.conf
 ---> Using cache
 ---> 162778b2fb7e
Step 16/21 : RUN a2ensite git-http.conf
 ---> Using cache
 ---> aa8d24d0dd8e
Step 17/21 : RUN apachectl configtest
 ---> Using cache
 ---> 9305129233d7
Step 18/21 : ADD git-http-backend-wrapper.sh /usr/lib/git-core
 ---> Using cache
 ---> 068e7780c3f7
Step 19/21 : RUN adduser www-data sudo
 ---> Using cache
 ---> 168134e117c8
Step 20/21 : RUN echo '%sudo  ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/sudo_group_passwordless
 ---> Using cache
 ---> 5a3dd394c8df
Step 21/21 : CMD ["/usr/sbin/apache2", "-D", "FOREGROUND"]
 ---> Using cache
 ---> 152b2028f29e
Successfully built 152b2028f29e
Successfully tagged allura_http:latest

=============================================================================
Setup: venv, pip, pysvn, ./rebuild-all.sh, npm, etc.
=============================================================================
Creating network "allura_default" with the default driver
Creating allura_mongo_1 ... 
Creating allura_solr_1  ... 
Creating allura_mongo_1 ... doneCreating allura_solr_1  ... done
Running scripts/init-docker-dev.sh

Creating SCM directories

Creating directory for SOLR data

Changing it's permissions to 777 so that container will have access to it

Creating virtualenv

Requirement already satisfied: pip in /allura-data/virtualenv/lib/python3.7/site-packages (22.0.4)
Collecting pip
  Downloading pip-22.3.1-py3-none-any.whl (2.1 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 4.1 MB/s eta 0:00:00
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 22.0.4
    Uninstalling pip-22.0.4:
      Successfully uninstalled pip-22.0.4
Successfully installed pip-22.3.1
Collecting wheel
  Downloading wheel-0.38.4-py3-none-any.whl (36 kB)
Installing collected packages: wheel
Successfully installed wheel-0.38.4
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0100 12741  100 12741    0     0  34435      0 --:--:-- --:--:-- --:--:-- 34435
Looking up latest PySVN version...
Downloading PySVN 1.9.18...
Building PySVN...
Processing /tmp/tmpgz_2kkgq.pysvn-install/pysvn-1.9.18
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Building wheels for collected packages: pysvn
  Building wheel for pysvn (setup.py): started
  Building wheel for pysvn (setup.py): finished with status 'done'
  Created wheel for pysvn: filename=pysvn-1.9.18-cp37-cp37m-linux_x86_64.whl size=739708 sha256=fcb8066d364875a2255a430fd4ef112ef387308174ac9ed73ba6bbf4d76d783c
  Stored in directory: /root/.cache/pip/wheels/5b/45/29/6cd591c4e8844c2f15a31a3051060fd88d2536ee1d92544d02
Successfully built pysvn
Installing collected packages: pysvn
Successfully installed pysvn-1.9.18

PySVN is installed.

Installing python packages

Obtaining file:///allura/Allura
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/AlluraTest
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeActivity
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeBlog
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeChat
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeDiscussion
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeFeedback
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeFiles
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeGit
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeImporters
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeLink
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeShortUrl
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeTracker
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeUserStats
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeWiki
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Installing collected packages: ForgeFiles, AlluraTest, Allura, ForgeWiki, ForgeUserStats, ForgeTracker, ForgeShortUrl, ForgeLink, ForgeImporters, ForgeGit, ForgeFeedback, ForgeDiscussion, ForgeChat, ForgeBlog, ForgeActivity
  Running setup.py develop for ForgeFiles
  Running setup.py develop for AlluraTest
  Running setup.py develop for Allura
  Running setup.py develop for ForgeWiki
  Running setup.py develop for ForgeUserStats
  Running setup.py develop for ForgeTracker
  Running setup.py develop for ForgeShortUrl
  Running setup.py develop for ForgeLink
  Running setup.py develop for ForgeImporters
  Running setup.py develop for ForgeGit
  Running setup.py develop for ForgeFeedback
  Running setup.py develop for ForgeDiscussion
  Running setup.py develop for ForgeChat
  Running setup.py develop for ForgeBlog
  Running setup.py develop for ForgeActivity
Successfully installed Allura-0.1.dev0 AlluraTest-0.1 ForgeActivity-0.1.dev0 ForgeBlog-0.0.dev0 ForgeChat-0.0.dev0 ForgeDiscussion-0.0.dev0 ForgeFeedback-0.0.dev0 ForgeFiles-0.1.0.dev0 ForgeGit-0.0.dev0 ForgeImporters-0.0.0.dev0 ForgeLink-0.0.dev0 ForgeShortUrl-0.0.0.dev0 ForgeTracker-0.0.dev0 ForgeUserStats-0.0.dev0 ForgeWiki-0.0.dev0
Obtaining file:///allura/ForgeSVN
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Requirement already satisfied: Allura in ./Allura (from ForgeSVN==0.0.dev0) (0.1.dev0)
Installing collected packages: ForgeSVN
  Running setup.py develop for ForgeSVN
Successfully installed ForgeSVN-0.0.dev0

Installing npm packages

> core-js@2.6.12 postinstall /allura/node_modules/core-js
> node -e "try{require('./postinstall')}catch(e){}"

Thank you for using core-js ( https://github.com/zloirock/core-js ) for polyfilling JavaScript standard library!

The project needs your help! Please consider supporting of core-js on Open Collective or Patreon: 
> https://opencollective.com/core-js 
> https://www.patreon.com/zloirock 

Also, the author of core-js ( https://github.com/zloirock ) is looking for a good job -)

added 426 packages in 9.357s

Compiling JS

> allura@0.0.0 build /allura
> rm -rf Allura/allura/public/nf/js/build/; broccoli build Allura/allura/public/nf/js/build/

Done

=============================================================================
Starting up docker containers
=============================================================================
allura_mongo_1 is up-to-date
allura_solr_1 is up-to-date
Creating allura_web_1 ... 
Creating allura_web_1 ... done
=============================================================================
Docker Container Info:
=============================================================================
python path: /allura-data/virtualenv/bin/python Python 3.7.16
python3.7 path: /allura-data/virtualenv/bin/python3.7 Python 3.7.16
git version 2.39.0
svn, version 1.9.7 (r1800392)
   compiled May 21 2022, 07:24:25 on x86_64-pc-linux-gnu

Copyright (C) 2017 The Apache Software Foundation.
This software consists of contributions made by many people;
see the NOTICE file for more information.
Subversion is open source software, see http://subversion.apache.org/

The following repository access (RA) modules are available:

* ra_svn : Module for accessing a repository using the svn network protocol.
  - with Cyrus SASL authentication
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
  - using serf 1.3.9 (compiled with 1.3.9)
  - handles 'http' scheme
  - handles 'https' scheme

The following authentication credential caches are available:

* Plaintext cache in /root/.subversion
* Gnome Keyring
* GPG-Agent
* KWallet (KDE)

pip: pip 22.3.1 from /allura-data/virtualenv/lib/python3.7/site-packages/pip (python 3.7)
npm: 6.14.12
whoami: root

=============================================================================
Setup: tests
=============================================================================

=============================================================================
Run: tests
=============================================================================
Setting environment for exec is not supported in API < 1.25 (1.24)

=============================================================================
Shutdown
=============================================================================
Stopping allura_web_1  ... 
Stopping allura_solr_1 ... 
Stopping allura_web_1  ... doneStopping allura_solr_1 ... doneRemoving allura_web_1                ... 
Removing allura_web_run_bfd9048bb533 ... 
Removing allura_solr_1               ... 
Removing allura_mongo_1              ... 
Removing allura_solr_1               ... doneRemoving allura_web_run_bfd9048bb533 ... doneRemoving allura_mongo_1              ... doneRemoving allura_web_1                ... doneRemoving network allura_default
Total reclaimed space: 0B
Deleted Volumes:
9482c546ce824e21ff901a6b41d7c8c851eb37709fb4b8455bfa2f57a3c55c57

Total reclaimed space: 0B
Build step 'Execute shell' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files were found. Configuration error?
Publishing Clover coverage report...
No Clover report will be published due to a build Failure

Build failed in Jenkins: Allura » Allura-py3.7 #167

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://ci-builds.apache.org/job/Allura/job/Allura-py3.7/167/display/redirect?page=changes>

Changes:

[dbrondsema] [#8486] git repos should look for main & master branches as possible default names


------------------------------------------
[...truncated 116.57 KB...]
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 4.8 MB/s eta 0:00:00
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 22.0.4
    Uninstalling pip-22.0.4:
      Successfully uninstalled pip-22.0.4
Successfully installed pip-22.3.1
Collecting wheel
  Downloading wheel-0.38.4-py3-none-any.whl (36 kB)
Installing collected packages: wheel
Successfully installed wheel-0.38.4
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0100 12741  100 12741    0     0  37807      0 --:--:-- --:--:-- --:--:-- 37807
Looking up latest PySVN version...
Downloading PySVN 1.9.18...
Building PySVN...
Processing /tmp/tmpqttx01pn.pysvn-install/pysvn-1.9.18
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Building wheels for collected packages: pysvn
  Building wheel for pysvn (setup.py): started
  Building wheel for pysvn (setup.py): finished with status 'done'
  Created wheel for pysvn: filename=pysvn-1.9.18-cp37-cp37m-linux_x86_64.whl size=739708 sha256=b89e0e3c9f0344d005e0ee834a0001a33a19b367cd4e4608632ffd512355b7a8
  Stored in directory: /root/.cache/pip/wheels/3a/2e/2b/e8bbffdb83daf5feaa64126e8b961857c73df5f83b954950d3
Successfully built pysvn
Installing collected packages: pysvn
Successfully installed pysvn-1.9.18

PySVN is installed.

Installing python packages

Obtaining file:///allura/Allura
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/AlluraTest
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeActivity
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeBlog
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeChat
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeDiscussion
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeFeedback
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeFiles
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeGit
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeImporters
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeLink
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeShortUrl
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeTracker
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeUserStats
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Obtaining file:///allura/ForgeWiki
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Installing collected packages: ForgeFiles, AlluraTest, Allura, ForgeWiki, ForgeUserStats, ForgeTracker, ForgeShortUrl, ForgeLink, ForgeImporters, ForgeGit, ForgeFeedback, ForgeDiscussion, ForgeChat, ForgeBlog, ForgeActivity
  Running setup.py develop for ForgeFiles
  Running setup.py develop for AlluraTest
  Running setup.py develop for Allura
  Running setup.py develop for ForgeWiki
  Running setup.py develop for ForgeUserStats
  Running setup.py develop for ForgeTracker
  Running setup.py develop for ForgeShortUrl
  Running setup.py develop for ForgeLink
  Running setup.py develop for ForgeImporters
  Running setup.py develop for ForgeGit
  Running setup.py develop for ForgeFeedback
  Running setup.py develop for ForgeDiscussion
  Running setup.py develop for ForgeChat
  Running setup.py develop for ForgeBlog
  Running setup.py develop for ForgeActivity
Successfully installed Allura-0.1.dev0 AlluraTest-0.1 ForgeActivity-0.1.dev0 ForgeBlog-0.0.dev0 ForgeChat-0.0.dev0 ForgeDiscussion-0.0.dev0 ForgeFeedback-0.0.dev0 ForgeFiles-0.1.0.dev0 ForgeGit-0.0.dev0 ForgeImporters-0.0.0.dev0 ForgeLink-0.0.dev0 ForgeShortUrl-0.0.0.dev0 ForgeTracker-0.0.dev0 ForgeUserStats-0.0.dev0 ForgeWiki-0.0.dev0
Obtaining file:///allura/ForgeSVN
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Requirement already satisfied: Allura in ./Allura (from ForgeSVN==0.0.dev0) (0.1.dev0)
Installing collected packages: ForgeSVN
  Running setup.py develop for ForgeSVN
Successfully installed ForgeSVN-0.0.dev0

Installing npm packages

> core-js@2.6.12 postinstall /allura/node_modules/core-js
> node -e "try{require('./postinstall')}catch(e){}"

Thank you for using core-js ( https://github.com/zloirock/core-js ) for polyfilling JavaScript standard library!

The project needs your help! Please consider supporting of core-js on Open Collective or Patreon: 
> https://opencollective.com/core-js 
> https://www.patreon.com/zloirock 

Also, the author of core-js ( https://github.com/zloirock ) is looking for a good job -)

added 426 packages in 9.114s

Compiling JS

> allura@0.0.0 build /allura
> rm -rf Allura/allura/public/nf/js/build/; broccoli build Allura/allura/public/nf/js/build/

Done

=============================================================================
Starting up docker containers
=============================================================================
allura_mongo_1 is up-to-date
allura_solr_1 is up-to-date
Creating allura_web_1 ... 
Creating allura_web_1 ... done
=============================================================================
Docker Container Info:
=============================================================================
python path: /allura-data/virtualenv/bin/python Python 3.7.16
python3.7 path: /allura-data/virtualenv/bin/python3.7 Python 3.7.16
git version 2.39.0
svn, version 1.9.7 (r1800392)
   compiled May 21 2022, 07:24:25 on x86_64-pc-linux-gnu

Copyright (C) 2017 The Apache Software Foundation.
This software consists of contributions made by many people;
see the NOTICE file for more information.
Subversion is open source software, see http://subversion.apache.org/

The following repository access (RA) modules are available:

* ra_svn : Module for accessing a repository using the svn network protocol.
  - with Cyrus SASL authentication
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
  - using serf 1.3.9 (compiled with 1.3.9)
  - handles 'http' scheme
  - handles 'https' scheme

The following authentication credential caches are available:

* Plaintext cache in /root/.subversion
* Gnome Keyring
* GPG-Agent
* KWallet (KDE)

pip: pip 22.3.1 from /allura-data/virtualenv/lib/python3.7/site-packages/pip (python 3.7)
npm: 6.14.12
whoami: root

=============================================================================
Setup: tests
=============================================================================

=============================================================================
Run: tests
=============================================================================
Setting environment for exec is not supported in API < 1.25 (1.24)

=============================================================================
Shutdown
=============================================================================
Stopping allura_web_1  ... 
Stopping allura_solr_1 ... 
Stopping allura_web_1  ... doneStopping allura_solr_1 ... doneRemoving allura_web_1                ... 
Removing allura_web_run_89cc37088e80 ... 
Removing allura_mongo_1              ... 
Removing allura_solr_1               ... 
Removing allura_web_1                ... doneRemoving allura_solr_1               ... doneRemoving allura_mongo_1              ... doneRemoving allura_web_run_89cc37088e80 ... doneRemoving network allura_default
Deleted Containers:
272c73d4e80516f92b9b87b8709f17279f37de442009a2a8f885a383af4842a9

Total reclaimed space: 0B
Deleted Volumes:
dc9e1a00bc12113440b0187bf42c0d55ff3d1bd4e5259a816666a4b28d6b814e
cf6a2aa4092fd7619bf3df532011204b3369e0fe15e875e3ca8a72d440b5707e
1bfd17563425c499343f436377ba6ffdd5cd92fd5d67c40de929a69e57b3e1d8
1ce4a919e38f77c10a023737bec37f8143ca85c5fa55e34dd897f29241156edf
2375f5fb242660013b718e9a83ddc74c476211d1fc546aea52528b23afd46492
9b614361121aa824cbd56b828b21b82af6592f438a2c3e4125f8de7ae036ad7b
c09da42a48cdacb5f99a27968c6bab77e57569dd2dfdb228a32660f931f29a3e
dbb2a0e67623be003770c0c5a96acd0250556ef787f790c77c306d174ac4dfd5
7380fe4b178579a5a317af431c04f6486a45bab8b4499d08198f01c4317e9e4a
7ab76e89b338471143edb3afa6fcf03b7a06ec4c26932556ef5a5f79684348ad
845fef73fcd0b9d418ee7b5e0379aa06cad6a20b1e43c19441f0b298686a0af9
26ad52d59601fbea144532122123d5b84fa2d9d6ec64abf559f9528c363fe338
3c4217f64a0f97fe82deba04ce957a324c3fb51b3ea400d03a7665951b44e10d
3de628520f50b8e21c6b8ab1d20b1cce8fe9b6122ca95ae44341dbb152555d2f
57397e15a98d9f5cf4fe701283ed1a21588a71ecff4bffdd9494202560953de6
5eaf1863bc2779663432c08231f1506103de6e8b3fda7640999e586d8a30dd66
b845d1b00e5d3880a1768bf8816b73e2fbf31aa6169441a942bd8605eaf61523
c0536c5be7503706a9c9e93466f5c7845db7f521f8b8d41823c25d26d047e178
1ea172b3e59adec955bc7c9915d1ba293f021784459ec02a3fef50d834b76eaa
6512b2a5c8e3a584b9ab39c5bb17a32898ac52c05bd0d9d16c22cf11f7ef7c34
6a19dd2706ff987962da23a7cd87e99e5943cf383f3724f706dfa842da575251
8ab54eff382b6ca473f829c330c6aa03f1ec383f74b88e35d1a49bfbfaa4aaf4
e23c0200e9a046042b7c88a66d02f6edb98de5ceee2e8051146bc08c774be3b2
2a82c016aecc179972a705dadc833144a8f4b68239c9ba21af6df1f61b2a1303
b0c80b6601c739775840c0fee04855bafe78683a68ef956ea8da0fcb67c4db08
2fab861a868330d5ba520795b12d98b649e38b56f3024f97f7642b44fc2db069
5a4a377e2df08322cdfcee48a8529ac48a93e6c877e239a0c065280a9dddf0a9
738244e68f9a6c9c44c9d4a4b15e2209c1f24ca0976274a18af9d81a9883294f
7ec791db97d954c81a57560608caced8ce8f19564fcd85b892b6c669ae1dfe2b
c6e33c52cd56760a1ca0f5e6b5d5e27e12282f34746bdbf47e6c57d647b87705
d82c6f672f72e5abdd7c70afa408fe2aaf39d16a535ed0299305906c513733d2
da4add91c37962bdc381e113177ae07fbb41fb6cd2b2126e1cb858b63ec896b7
26a24276f9d2c3d2b6fa45ba64634d236414dd2cb0ddc39ac3c6f7dd7fdaccbe
6650ad7623aaa3df179d01221ca14698eb8c26f30f17afd625f2b49337907216
742f030f44548831340502fb752fa9a7a1f0df892c8ba9081981a63351580c91
77f34ed6d2d1f7a6f2ee99e88863c2ed00ece707a5f1ea74a3dc591c8661e1f4
a211beb74272099a55ed4b0a0a2e8c807c49e38dcccd24dd6c474ce734295c5f
8457f1294b5168b713438a187cad5cffdf1265f1565d3d1654012fd61a8518df
c3b1732dbeb95be5386a9c54676220b1e8dc5c5c201ad6b17e3c7fd393b6d343
dabb996cb4fd7ce230b689a351ed9eaddfae98d0a3aba21d7617aca2dfe8b545
0a1f6cdbb8f8a638898c928736dbda496abe6034e63c4febfa81bffd056a0412
2ef87bf841e9bd129ce3183c90a1666e5526a3a7c7109687a03b8fb53a04bdc1
2fe83f80e1dc9c54d3532875170dc938915dc15c65b3385426ac91da0c6e1ee1
88658912df2d2323ca5484205371a17084f787626ebea4581302da83ccde4aba
baa77f09ec6dd9180d6f7cdf325e8092eced767e6eb15e0cd00eb84a048b493d
46868feb630f9674daa1dca55e754b3e4147e2c114cece8afdfc5a3f59c70689
722d69b17d112d99f901b6fd075bd968dd4ef9a667bcceba332791e7ace44db4
8eec114f2d920b3d6d9d3a5d7c651ed1609efb61f6c503414e46fa8f52277319
d82fe3864859e8ef15559a942732ce73cdcab4b99dd0a2c6381314a6e331da54

Total reclaimed space: 6.833GB
Build step 'Execute shell' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files were found. Configuration error?
Publishing Clover coverage report...
No Clover report will be published due to a build Failure