>>> py3-discogs-client: Building testing/py3-discogs-client 2.3.12-r3 (using abuild 3.10.0_rc1-r2) started Thu, 24 Nov 2022 06:18:25 +0000 >>> py3-discogs-client: Checking sanity of /home/buildozer/aports/testing/py3-discogs-client/APKBUILD... >>> py3-discogs-client: Analyzing dependencies... >>> py3-discogs-client: Installing for build: build-base py3-oauthlib py3-requests python3 py3-dateutil py3-setuptools py3-yaml (1/22) Installing libbz2 (1.0.8-r4) (2/22) Installing libffi (3.4.4-r0) (3/22) Installing gdbm (1.23-r0) (4/22) Installing xz-libs (5.2.8-r0) (5/22) Installing mpdecimal (2.5.1-r1) (6/22) Installing readline (8.2.0-r0) (7/22) Installing sqlite-libs (3.40.0-r0) (8/22) Installing python3 (3.11.0-r2) (9/22) Installing py3-oauthlib (2.1.0-r8) (10/22) Installing py3-certifi (2022.9.24-r1) (11/22) Installing py3-charset-normalizer (3.0.1-r1) (12/22) Installing py3-idna (3.4-r3) (13/22) Installing py3-urllib3 (1.26.12-r1) (14/22) Installing py3-requests (2.28.1-r2) (15/22) Installing py3-six (1.16.0-r4) (16/22) Installing py3-dateutil (2.8.2-r2) (17/22) Installing py3-parsing (3.0.9-r1) (18/22) Installing py3-packaging (21.3-r3) (19/22) Installing py3-setuptools (65.6.2-r0) (20/22) Installing yaml (0.2.5-r0) (21/22) Installing py3-yaml (6.0-r1) (22/22) Installing .makedepends-py3-discogs-client (20221124.061826) Executing busybox-1.35.0-r29.trigger OK: 412 MiB in 118 packages >>> py3-discogs-client: Cleaning up srcdir >>> py3-discogs-client: Cleaning up pkgdir >>> py3-discogs-client: Fetching https://distfiles.alpinelinux.org/distfiles/edge/python3-discogs-client-2.3.12.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 32604 100 32604 0 0 60691 0 --:--:-- --:--:-- --:--:-- 60715 >>> py3-discogs-client: Fetching https://distfiles.alpinelinux.org/distfiles/edge/python3-discogs-client-2.3.12.tar.gz >>> py3-discogs-client: Checking sha512sums... python3-discogs-client-2.3.12.tar.gz: OK >>> py3-discogs-client: Unpacking /var/cache/distfiles/edge/python3-discogs-client-2.3.12.tar.gz... running build running build_py creating build creating build/lib creating build/lib/discogs_client copying discogs_client/utils.py -> build/lib/discogs_client copying discogs_client/client.py -> build/lib/discogs_client copying discogs_client/__init__.py -> build/lib/discogs_client copying discogs_client/exceptions.py -> build/lib/discogs_client copying discogs_client/models.py -> build/lib/discogs_client copying discogs_client/fetchers.py -> build/lib/discogs_client running test WARNING: Testing via this command is deprecated and will be removed in a future version. Users looking for a generic test entry point independent of test runner are encouraged to use tox. running egg_info writing python3_discogs_client.egg-info/PKG-INFO writing dependency_links to python3_discogs_client.egg-info/dependency_links.txt writing requirements to python3_discogs_client.egg-info/requires.txt writing top-level names to python3_discogs_client.egg-info/top_level.txt reading manifest file 'python3_discogs_client.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no previously-included files matching 'make_symlinks.py' found under directory 'discogs_client/tests' adding license file 'LICENSE' writing manifest file 'python3_discogs_client.egg-info/SOURCES.txt' running build_ext test_backed_off_when_rate_limit_reached (discogs_client.tests.test_utils.UtilsTestCase.test_backed_off_when_rate_limit_reached) ... ok test_condition (discogs_client.tests.test_utils.UtilsTestCase.test_condition) ... ok test_omit_none (discogs_client.tests.test_utils.UtilsTestCase.test_omit_none) ... ok test_parse_timestamp (discogs_client.tests.test_utils.UtilsTestCase.test_parse_timestamp) ... ok test_sort (discogs_client.tests.test_utils.UtilsTestCase.test_sort) ... ok test_status (discogs_client.tests.test_utils.UtilsTestCase.test_status) ... ok test_update_qs (discogs_client.tests.test_utils.UtilsTestCase.test_update_qs) update_qs helper works as intended ... ok test_caching (discogs_client.tests.test_core.CoreTestCase.test_caching) Only perform a fetch when requesting missing data ... ok test_equality (discogs_client.tests.test_core.CoreTestCase.test_equality) APIObjects of the same class are equal if their IDs are ... ok test_object_field (discogs_client.tests.test_core.CoreTestCase.test_object_field) APIObjects can have APIObjects as properties ... ok test_pagination (discogs_client.tests.test_core.CoreTestCase.test_pagination) PaginatedLists are parsed correctly, indexable, and iterable ... ok test_read_only_object_field (discogs_client.tests.test_core.CoreTestCase.test_read_only_object_field) Can't write to an ObjectField ... ok test_read_only_simple_field (discogs_client.tests.test_core.CoreTestCase.test_read_only_simple_field) Can't write to a SimpleField when writable=False ... ok test_transform_datetime (discogs_client.tests.test_core.CoreTestCase.test_transform_datetime) String timestamps are converted to datetimes ... ok test_user_agent (discogs_client.tests.test_core.CoreTestCase.test_user_agent) User-Agent should be properly set ... ok test_memory_fetcher (discogs_client.tests.test_fetchers.FetcherTestCase.test_memory_fetcher) Client can fetch responses with MemoryFetcher ... ok test_oauth2_fetcher (discogs_client.tests.test_fetchers.FetcherTestCase.test_oauth2_fetcher) ... ok test_artist (discogs_client.tests.test_models.ModelsTestCase.test_artist) Artists can be fetched and parsed ... ok test_collection (discogs_client.tests.test_models.ModelsTestCase.test_collection) Collection folders can be manipulated ... ok test_collection_value (discogs_client.tests.test_models.ModelsTestCase.test_collection_value) Collection Value can be fetched and parsed ... ok test_delete_object (discogs_client.tests.test_models.ModelsTestCase.test_delete_object) Can request DELETE on an APIObject ... ok test_fee (discogs_client.tests.test_models.ModelsTestCase.test_fee) ... ok test_http_error (discogs_client.tests.test_models.ModelsTestCase.test_http_error) HTTPError provides useful information ... ok test_identity (discogs_client.tests.test_models.ModelsTestCase.test_identity) OAuth identity returns a User ... ok test_invalid_artist (discogs_client.tests.test_models.ModelsTestCase.test_invalid_artist) Invalid artist raises HTTPError ... ok test_invalid_release (discogs_client.tests.test_models.ModelsTestCase.test_invalid_release) Invalid release raises HTTPError ... ok test_inventory (discogs_client.tests.test_models.ModelsTestCase.test_inventory) Inventory can be manipulated ... ok test_list (discogs_client.tests.test_models.ModelsTestCase.test_list) Lists can be fetched and parsed ... ok test_listing (discogs_client.tests.test_models.ModelsTestCase.test_listing) Listing can be manipulated ... ok test_marketplace_stats (discogs_client.tests.test_models.ModelsTestCase.test_marketplace_stats) Release stats can be fetched and parsed ... ok test_master (discogs_client.tests.test_models.ModelsTestCase.test_master) Masters can be fetched and parsed ... ok test_master_versions (discogs_client.tests.test_models.ModelsTestCase.test_master_versions) Test main_release / versions relationship ... ok test_parent_label (discogs_client.tests.test_models.ModelsTestCase.test_parent_label) Test parent_label / sublabels relationship ... ok test_release (discogs_client.tests.test_models.ModelsTestCase.test_release) Releases can be fetched and parsed ... ok test_search (discogs_client.tests.test_models.ModelsTestCase.test_search) ... ok test_user (discogs_client.tests.test_models.ModelsTestCase.test_user) Users can be fetched and parsed ... ok test_user_writable (discogs_client.tests.test_models.ModelsTestCase.test_user_writable) User profile can be updated ... ok test_utf8_search (discogs_client.tests.test_models.ModelsTestCase.test_utf8_search) ... ok test_wantlist (discogs_client.tests.test_models.ModelsTestCase.test_wantlist) Wantlists can be manipulated ... ok ---------------------------------------------------------------------- Ran 39 tests in 0.017s OK >>> py3-discogs-client: Entering fakeroot... running install /usr/lib/python3.11/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. warnings.warn( running build running build_py running install_lib creating /home/buildozer/aports/testing/py3-discogs-client/pkg creating /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client creating /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr creating /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib creating /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11 creating /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages creating /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client copying build/lib/discogs_client/utils.py -> /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client copying build/lib/discogs_client/client.py -> /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client copying build/lib/discogs_client/__init__.py -> /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client copying build/lib/discogs_client/exceptions.py -> /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client copying build/lib/discogs_client/models.py -> /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client copying build/lib/discogs_client/fetchers.py -> /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client byte-compiling /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client/utils.py to utils.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client/client.py to client.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client/__init__.py to __init__.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client/exceptions.py to exceptions.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client/models.py to models.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/discogs_client/fetchers.py to fetchers.cpython-311.pyc running install_egg_info running egg_info writing python3_discogs_client.egg-info/PKG-INFO writing dependency_links to python3_discogs_client.egg-info/dependency_links.txt writing requirements to python3_discogs_client.egg-info/requires.txt writing top-level names to python3_discogs_client.egg-info/top_level.txt reading manifest file 'python3_discogs_client.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no previously-included files matching 'make_symlinks.py' found under directory 'discogs_client/tests' adding license file 'LICENSE' writing manifest file 'python3_discogs_client.egg-info/SOURCES.txt' Copying python3_discogs_client.egg-info to /home/buildozer/aports/testing/py3-discogs-client/pkg/py3-discogs-client/usr/lib/python3.11/site-packages/python3_discogs_client-2.3.12-py3.11.egg-info running install_scripts >>> py3-discogs-client*: Running postcheck for py3-discogs-client >>> py3-discogs-client*: Preparing package py3-discogs-client... >>> py3-discogs-client*: Tracing dependencies... >>> py3-discogs-client*: Package size: 212.0 KB >>> py3-discogs-client*: Compressing data... >>> py3-discogs-client*: Create checksum... >>> py3-discogs-client*: Create py3-discogs-client-2.3.12-r3.apk >>> py3-discogs-client: Build complete at Thu, 24 Nov 2022 06:18:29 +0000 elapsed time 0h 0m 4s >>> py3-discogs-client: Cleaning up srcdir >>> py3-discogs-client: Cleaning up pkgdir >>> py3-discogs-client: Uninstalling dependencies... (1/22) Purging .makedepends-py3-discogs-client (20221124.061826) (2/22) Purging py3-oauthlib (2.1.0-r8) (3/22) Purging py3-requests (2.28.1-r2) (4/22) Purging py3-certifi (2022.9.24-r1) (5/22) Purging py3-charset-normalizer (3.0.1-r1) (6/22) Purging py3-idna (3.4-r3) (7/22) Purging py3-urllib3 (1.26.12-r1) (8/22) Purging py3-dateutil (2.8.2-r2) (9/22) Purging py3-six (1.16.0-r4) (10/22) Purging py3-setuptools (65.6.2-r0) (11/22) Purging py3-packaging (21.3-r3) (12/22) Purging py3-parsing (3.0.9-r1) (13/22) Purging py3-yaml (6.0-r1) (14/22) Purging python3 (3.11.0-r2) (15/22) Purging libbz2 (1.0.8-r4) (16/22) Purging libffi (3.4.4-r0) (17/22) Purging gdbm (1.23-r0) (18/22) Purging xz-libs (5.2.8-r0) (19/22) Purging mpdecimal (2.5.1-r1) (20/22) Purging readline (8.2.0-r0) (21/22) Purging sqlite-libs (3.40.0-r0) (22/22) Purging yaml (0.2.5-r0) Executing busybox-1.35.0-r29.trigger OK: 331 MiB in 96 packages >>> py3-discogs-client: Updating the testing/armhf repository index... >>> py3-discogs-client: Signing the index...