>>> py3-dotty-dict: Building testing/py3-dotty-dict 1.3.0-r2 (using abuild 3.9.0-r0) started Sun, 19 Dec 2021 16:00:20 +0000 >>> py3-dotty-dict: Checking sanity of /home/buildozer/aports/testing/py3-dotty-dict/APKBUILD... >>> py3-dotty-dict: Analyzing dependencies... >>> py3-dotty-dict: Installing for build: build-base python3 py3-setuptools py3-pytest (1/22) Installing libffi (3.4.2-r1) (2/22) Installing gdbm (1.22-r0) (3/22) Installing mpdecimal (2.5.1-r1) (4/22) Installing readline (8.1.1-r0) (5/22) Installing sqlite-libs (3.37.0-r0) (6/22) Installing python3 (3.10.1-r0) (7/22) Installing py3-ordered-set (4.0.2-r3) (8/22) Installing py3-appdirs (1.4.4-r3) (9/22) Installing py3-parsing (2.4.7-r3) (10/22) Installing py3-six (1.16.0-r1) (11/22) Installing py3-packaging (21.3-r0) (12/22) Installing py3-setuptools (52.0.0-r5) (13/22) Installing py3-atomicwrites (1.4.0-r2) (14/22) Installing py3-attrs (21.2.0-r1) (15/22) Installing py3-more-itertools (8.12.0-r1) (16/22) Installing py3-iniconfig (1.1.1-r2) (17/22) Installing py3-pluggy (0.13.1-r5) (18/22) Installing py3-py (1.10.0-r2) (19/22) Installing py3-wcwidth (0.2.5-r2) (20/22) Installing py3-toml (0.10.2-r3) (21/22) Installing py3-pytest (6.2.5-r1) (22/22) Installing .makedepends-py3-dotty-dict (20211219.160021) Executing busybox-1.34.1-r5.trigger OK: 362 MiB in 121 packages >>> py3-dotty-dict: Cleaning up srcdir >>> py3-dotty-dict: Cleaning up pkgdir >>> py3-dotty-dict: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-dotty-dict-1.3.0.tar.gz >>> py3-dotty-dict: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-dotty-dict-1.3.0.tar.gz >>> py3-dotty-dict: Checking sha512sums... py3-dotty-dict-1.3.0.tar.gz: OK >>> py3-dotty-dict: Unpacking /var/cache/distfiles/edge/py3-dotty-dict-1.3.0.tar.gz... /usr/lib/python3.10/distutils/dist.py:274: UserWarning: Unknown distribution option: 'use_scm_version' warnings.warn(msg) running build running build_py creating build creating build/lib creating build/lib/dotty_dict copying dotty_dict/dotty_dict.py -> build/lib/dotty_dict copying dotty_dict/__init__.py -> build/lib/dotty_dict running egg_info creating dotty_dict.egg-info writing dotty_dict.egg-info/PKG-INFO writing dependency_links to dotty_dict.egg-info/dependency_links.txt writing requirements to dotty_dict.egg-info/requires.txt writing top-level names to dotty_dict.egg-info/top_level.txt writing manifest file 'dotty_dict.egg-info/SOURCES.txt' reading manifest file 'dotty_dict.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching 'PipFile' warning: no files found matching 'PipFile.lock' warning: no previously-included files matching '__pycache__' found under directory '*' warning: no previously-included files matching '*.py[co]' found under directory '*' warning: no files found matching '*' under directory 'vo' warning: no files found matching '*.jpg' under directory 'docs' warning: no files found matching '*.png' under directory 'docs' warning: no files found matching '*.gif' under directory 'docs' writing manifest file 'dotty_dict.egg-info/SOURCES.txt' ============================= test session starts ============================== platform linux -- Python 3.10.1, pytest-6.2.5, py-1.10.0, pluggy-0.13.1 -- /usr/bin/python3 cachedir: .pytest_cache rootdir: /home/buildozer/aports/testing/py3-dotty-dict/src/dotty_dict-1.3.0, configfile: setup.cfg collecting ... collected 78 items tests/test_dotty_api.py::TestDottyPrivateMembers::test_split_separator PASSED [ 1%] tests/test_dotty_api.py::TestDottyPrivateMembers::test_split_with_custom_separator PASSED [ 2%] tests/test_dotty_api.py::TestDottyPublicMembers::test_nested_dotty_in_list_to_dict PASSED [ 3%] tests/test_dotty_api.py::TestDottyPublicMembers::test_nested_dotty_object_to_dict PASSED [ 5%] tests/test_dotty_api.py::TestDottyPublicMembers::test_to_dict PASSED [ 6%] tests/test_dotty_api.py::TestDictSpecificMethods::test_access_keys PASSED [ 7%] tests/test_dotty_api.py::TestDictSpecificMethods::test_access_keys_from_deeply_nested_structure PASSED [ 8%] tests/test_dotty_api.py::TestDictSpecificMethods::test_copy PASSED [ 10%] tests/test_dotty_api.py::TestDictSpecificMethods::test_fromkeys PASSED [ 11%] tests/test_dotty_api.py::TestDictSpecificMethods::test_get_value_with_default PASSED [ 12%] tests/test_dotty_api.py::TestDictSpecificMethods::test_get_value_without_default PASSED [ 14%] tests/test_dotty_api.py::TestDictSpecificMethods::test_pop_from_dotty_flat PASSED [ 15%] tests/test_dotty_api.py::TestDictSpecificMethods::test_pop_nested_key PASSED [ 16%] tests/test_dotty_api.py::TestDictSpecificMethods::test_pop_nested_key_with_default_value PASSED [ 17%] tests/test_dotty_api.py::TestDictSpecificMethods::test_pop_with_default_value PASSED [ 19%] tests/test_dotty_api.py::TestDictSpecificMethods::test_return_dotty_length PASSED [ 20%] tests/test_dotty_api.py::TestDictSpecificMethods::test_setdefault_flat_existing PASSED [ 21%] tests/test_dotty_api.py::TestDictSpecificMethods::test_setdefault_flat_not_existing PASSED [ 23%] tests/test_dotty_api.py::TestDictSpecificMethods::test_setdefault_nested_key_existing PASSED [ 24%] tests/test_dotty_api.py::TestDictSpecificMethods::test_setdefault_nested_key_not_existing PASSED [ 25%] tests/test_dotty_basics.py::TestDottyBasics::test_create_empty_instance PASSED [ 26%] tests/test_dotty_basics.py::TestDottyBasics::test_create_non_empty_instance PASSED [ 28%] tests/test_dotty_basics.py::TestDottyBasics::test_dotty_and_not_mapping_instance_should_not_be_equal PASSED [ 29%] tests/test_dotty_basics.py::TestDottyBasics::test_plain_dict_and_dotty_wrapper_should_be_equal PASSED [ 30%] tests/test_dotty_basics.py::TestDottyBasics::test_pop_with_default_value PASSED [ 32%] tests/test_dotty_basics.py::TestDottyBasics::test_raise_attr_error_if_input_is_not_dict PASSED [ 33%] tests/test_dotty_basics.py::TestDottyBasics::test_two_dotty_with_different_input_should_not_be_equal PASSED [ 34%] tests/test_dotty_basics.py::TestDottyBasics::test_two_dotty_with_the_same_input_should_be_equal PASSED [ 35%] tests/test_dotty_cache.py::TestDottyCache::test_getitem_cache PASSED [ 37%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_access_deep_nested_value PASSED [ 38%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_access_flat_value PASSED [ 39%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_access_middle_nested_value PASSED [ 41%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_data_gathering_with_int PASSED [ 42%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_delete_flat_key PASSED [ 43%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_delete_nested_key PASSED [ 44%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_dotty_has_deeply_nested_key PASSED [ 46%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_dotty_has_flat_key PASSED [ 47%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_dotty_has_not_deeply_nested_key PASSED [ 48%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_dotty_has_not_flat_key PASSED [ 50%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_get_value_with_escaped_escape_separator PASSED [ 51%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_get_value_with_escaped_separator PASSED [ 52%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_has_in PASSED [ 53%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_has_not_in PASSED [ 55%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_integer_keys PASSED [ 56%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_non_standard_key_types PASSED [ 57%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_raise_key_error_if_key_does_not_exist PASSED [ 58%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_raise_key_error_on_delete_not_existing_key PASSED [ 60%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_set_deep_nested_value PASSED [ 61%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_set_flat_value PASSED [ 62%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_set_new_deeply_nested_value PASSED [ 64%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_set_value_with_escaped_separator PASSED [ 65%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_string_digit_key PASSED [ 66%] tests/test_dotty_value_access.py::TestDottyValueAccess::test_use_custom_separator_and_custom_escape_char PASSED [ 67%] tests/test_examples.py::test_examples PASSED [ 69%] tests/test_list_in_dotty.py::TestListInDotty::test_access_multidimensional_lists PASSED [ 70%] tests/test_list_in_dotty.py::TestListInDotty::test_access_sub_sub_field PASSED [ 71%] tests/test_list_in_dotty.py::TestListInDotty::test_access_subfield1_of_field3 PASSED [ 73%] tests/test_list_in_dotty.py::TestListInDotty::test_assert_get_returns_default_if_index_is_out_of_range PASSED [ 74%] tests/test_list_in_dotty.py::TestListInDotty::test_assert_index_error_if_index_is_out_of_range PASSED [ 75%] tests/test_list_in_dotty.py::TestListInDotty::test_assert_key_error_if_index_is_not_integer PASSED [ 76%] tests/test_list_in_dotty.py::TestListInDotty::test_delete_subfield PASSED [ 78%] tests/test_list_in_dotty.py::TestListInDotty::test_dotty_contains_subfield_of_field PASSED [ 79%] tests/test_list_in_dotty.py::TestListInDotty::test_dotty_not_contains_out_of_range_subfield PASSED [ 80%] tests/test_list_in_dotty.py::TestListInDotty::test_list_as_return_value PASSED [ 82%] tests/test_list_in_dotty.py::TestListInDotty::test_root_level_list_element PASSED [ 83%] tests/test_list_in_dotty.py::TestListInDotty::test_set_subfield_in_list PASSED [ 84%] tests/test_list_in_dotty.py::TestListInDotty::test_update_subfield_in_list PASSED [ 85%] tests/test_list_in_dotty.py::TestMultipleSelectList::test_both_side_slice PASSED [ 87%] tests/test_list_in_dotty.py::TestMultipleSelectList::test_left_side_slice PASSED [ 88%] tests/test_list_in_dotty.py::TestMultipleSelectList::test_return_whole_list PASSED [ 89%] tests/test_list_in_dotty.py::TestMultipleSelectList::test_right_side_slice PASSED [ 91%] tests/test_list_in_dotty.py::TestMultipleSelectList::test_step_slice PASSED [ 92%] tests/test_list_in_dotty.py::TestMultipleSelectList::test_whole_nested_multiple_list PASSED [ 93%] tests/test_list_in_dotty.py::TestMultipleSelectList::test_whole_shallow_multiple_list PASSED [ 94%] tests/test_list_in_dotty.py::TestNoList::test_limit_slice_index PASSED [ 96%] tests/test_list_in_dotty.py::TestNoList::test_normal_key PASSED [ 97%] tests/test_list_in_dotty.py::TestNoList::test_simple_index PASSED [ 98%] tests/test_list_in_dotty.py::TestNoList::test_whole_slice_index PASSED [100%] ============================== 78 passed in 0.23s ============================== >>> py3-dotty-dict: Entering fakeroot... /usr/lib/python3.10/distutils/dist.py:274: UserWarning: Unknown distribution option: 'use_scm_version' warnings.warn(msg) running install running build running build_py running egg_info writing dotty_dict.egg-info/PKG-INFO writing dependency_links to dotty_dict.egg-info/dependency_links.txt writing requirements to dotty_dict.egg-info/requires.txt writing top-level names to dotty_dict.egg-info/top_level.txt reading manifest file 'dotty_dict.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching 'PipFile' warning: no files found matching 'PipFile.lock' warning: no previously-included files matching '__pycache__' found under directory '*' warning: no previously-included files matching '*.py[co]' found under directory '*' warning: no files found matching '*' under directory 'vo' warning: no files found matching '*.jpg' under directory 'docs' warning: no files found matching '*.png' under directory 'docs' warning: no files found matching '*.gif' under directory 'docs' writing manifest file 'dotty_dict.egg-info/SOURCES.txt' running install_lib creating /home/buildozer/aports/testing/py3-dotty-dict/pkg creating /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict creating /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict/usr creating /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict/usr/lib creating /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict/usr/lib/python3.10 creating /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict/usr/lib/python3.10/site-packages creating /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict/usr/lib/python3.10/site-packages/dotty_dict copying build/lib/dotty_dict/dotty_dict.py -> /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict/usr/lib/python3.10/site-packages/dotty_dict copying build/lib/dotty_dict/__init__.py -> /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict/usr/lib/python3.10/site-packages/dotty_dict byte-compiling /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict/usr/lib/python3.10/site-packages/dotty_dict/dotty_dict.py to dotty_dict.cpython-310.pyc byte-compiling /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict/usr/lib/python3.10/site-packages/dotty_dict/__init__.py to __init__.cpython-310.pyc running install_egg_info Copying dotty_dict.egg-info to /home/buildozer/aports/testing/py3-dotty-dict/pkg/py3-dotty-dict/usr/lib/python3.10/site-packages/dotty_dict-1.3.0-py3.10.egg-info running install_scripts >>> py3-dotty-dict*: Running postcheck for py3-dotty-dict >>> py3-dotty-dict*: Preparing package py3-dotty-dict... >>> py3-dotty-dict*: Tracing dependencies... >>> py3-dotty-dict*: Package size: 96.0 KB >>> py3-dotty-dict*: Compressing data... >>> py3-dotty-dict*: Create checksum... >>> py3-dotty-dict*: Create py3-dotty-dict-1.3.0-r2.apk >>> py3-dotty-dict: Build complete at Sun, 19 Dec 2021 16:00:23 +0000 elapsed time 0h 0m 3s >>> py3-dotty-dict: Cleaning up srcdir >>> py3-dotty-dict: Cleaning up pkgdir >>> py3-dotty-dict: Uninstalling dependencies... (1/22) Purging .makedepends-py3-dotty-dict (20211219.160021) (2/22) Purging py3-setuptools (52.0.0-r5) (3/22) Purging py3-ordered-set (4.0.2-r3) (4/22) Purging py3-appdirs (1.4.4-r3) (5/22) Purging py3-pytest (6.2.5-r1) (6/22) Purging py3-atomicwrites (1.4.0-r2) (7/22) Purging py3-attrs (21.2.0-r1) (8/22) Purging py3-more-itertools (8.12.0-r1) (9/22) Purging py3-iniconfig (1.1.1-r2) (10/22) Purging py3-pluggy (0.13.1-r5) (11/22) Purging py3-py (1.10.0-r2) (12/22) Purging py3-wcwidth (0.2.5-r2) (13/22) Purging py3-packaging (21.3-r0) (14/22) Purging py3-parsing (2.4.7-r3) (15/22) Purging py3-six (1.16.0-r1) (16/22) Purging py3-toml (0.10.2-r3) (17/22) Purging python3 (3.10.1-r0) (18/22) Purging libffi (3.4.2-r1) (19/22) Purging gdbm (1.22-r0) (20/22) Purging mpdecimal (2.5.1-r1) (21/22) Purging readline (8.1.1-r0) (22/22) Purging sqlite-libs (3.37.0-r0) Executing busybox-1.34.1-r5.trigger OK: 307 MiB in 99 packages >>> py3-dotty-dict: Updating the testing/armhf repository index... >>> py3-dotty-dict: Signing the index...