============================= test session starts ============================== platform sunos5 -- Python $(PYTHON_VERSION).X -- $(PYTHON) cachedir: .pytest_cache rootdir: $(@D) configfile: pyproject.toml collecting ... collected 116 items tests/test_hash_trie_map.py::test_instance_of_hashable PASSED tests/test_hash_trie_map.py::test_instance_of_map PASSED tests/test_hash_trie_map.py::test_literalish_works PASSED tests/test_hash_trie_map.py::test_empty_initialization PASSED tests/test_hash_trie_map.py::test_initialization_with_one_element PASSED tests/test_hash_trie_map.py::test_index_non_existing_raises_key_error PASSED tests/test_hash_trie_map.py::test_remove_non_existing_element_raises_key_error PASSED tests/test_hash_trie_map.py::test_various_iterations PASSED tests/test_hash_trie_map.py::test_initialization_with_two_elements PASSED tests/test_hash_trie_map.py::test_initialization_with_many_elements PASSED tests/test_hash_trie_map.py::test_access_non_existing_element PASSED tests/test_hash_trie_map.py::test_overwrite_existing_element PASSED tests/test_hash_trie_map.py::test_hashing PASSED tests/test_hash_trie_map.py::test_same_hash_when_content_the_same_but_underlying_vector_size_differs PASSED tests/test_hash_trie_map.py::test_map_does_not_hash_values_on_second_hash_invocation PASSED tests/test_hash_trie_map.py::test_equal PASSED tests/test_hash_trie_map.py::test_equal_with_different_insertion_order PASSED tests/test_hash_trie_map.py::test_not_equal PASSED tests/test_hash_trie_map.py::test_not_equal_to_dict PASSED tests/test_hash_trie_map.py::test_update_with_multiple_arguments PASSED tests/test_hash_trie_map.py::test_update_one_argument PASSED tests/test_hash_trie_map.py::test_update_no_arguments PASSED tests/test_hash_trie_map.py::test_iteration_with_many_elements PASSED tests/test_hash_trie_map.py::test_repr PASSED tests/test_hash_trie_map.py::test_str PASSED tests/test_hash_trie_map.py::test_empty_truthiness PASSED tests/test_hash_trie_map.py::test_iterable PASSED tests/test_hash_trie_map.py::test_convert_hashtriemap PASSED tests/test_hash_trie_map.py::test_fast_convert_hashtriemap PASSED tests/test_hash_trie_map.py::test_more_eq PASSED tests/test_hash_trie_map.py::test_pickle PASSED tests/test_hash_trie_map.py::test_get PASSED tests/test_hash_trie_map.py::test_views_abc[Set-keys] PASSED tests/test_hash_trie_map.py::test_views_abc[Set-values] PASSED tests/test_hash_trie_map.py::test_views_abc[Set-items] PASSED tests/test_hash_trie_map.py::test_views_abc[MappingView-keys] PASSED tests/test_hash_trie_map.py::test_views_abc[MappingView-values] PASSED tests/test_hash_trie_map.py::test_views_abc[MappingView-items] PASSED tests/test_hash_trie_map.py::test_views_abc[KeysView-keys] PASSED tests/test_hash_trie_map.py::test_views_abc[KeysView-values] PASSED tests/test_hash_trie_map.py::test_views_abc[KeysView-items] PASSED tests/test_hash_trie_map.py::test_views_abc[ValuesView-keys] PASSED tests/test_hash_trie_map.py::test_views_abc[ValuesView-values] PASSED tests/test_hash_trie_map.py::test_views_abc[ValuesView-items] PASSED tests/test_hash_trie_map.py::test_views_abc[ItemsView-keys] PASSED tests/test_hash_trie_map.py::test_views_abc[ItemsView-values] PASSED tests/test_hash_trie_map.py::test_views_abc[ItemsView-items] PASSED tests/test_hash_trie_map.py::test_keys PASSED tests/test_hash_trie_map.py::test_keys_setlike PASSED tests/test_hash_trie_map.py::test_keys_repr PASSED tests/test_hash_trie_map.py::test_values PASSED tests/test_hash_trie_map.py::test_values_repr PASSED tests/test_hash_trie_map.py::test_items PASSED tests/test_hash_trie_map.py::test_items_setlike PASSED tests/test_hash_trie_map.py::test_items_repr PASSED tests/test_hash_trie_map.py::test_fromkeys PASSED tests/test_hash_trie_map.py::test_fromkeys_explicit_value PASSED tests/test_hash_trie_map.py::test_fromkeys_explicit_value_not_copied PASSED tests/test_hash_trie_map.py::test_update_with_iterable_of_kvs PASSED tests/test_hash_trie_set.py::test_key_is_tuple PASSED tests/test_hash_trie_set.py::test_key_is_not_tuple PASSED tests/test_hash_trie_set.py::test_hashing PASSED tests/test_hash_trie_set.py::test_empty_truthiness PASSED tests/test_hash_trie_set.py::test_contains_elements_that_it_was_initialized_with PASSED tests/test_hash_trie_set.py::test_is_immutable PASSED tests/test_hash_trie_set.py::test_remove_when_not_present PASSED tests/test_hash_trie_set.py::test_discard PASSED tests/test_hash_trie_set.py::test_is_iterable PASSED tests/test_hash_trie_set.py::test_contains PASSED tests/test_hash_trie_set.py::test_supports_set_operations PASSED tests/test_hash_trie_set.py::test_supports_set_comparisons PASSED tests/test_hash_trie_set.py::test_repr PASSED tests/test_hash_trie_set.py::test_update PASSED tests/test_hash_trie_set.py::test_update_no_elements PASSED tests/test_hash_trie_set.py::test_iterable PASSED tests/test_hash_trie_set.py::test_more_eq PASSED tests/test_hash_trie_set.py::test_more_set_comparisons PASSED tests/test_hash_trie_set.py::test_pickle PASSED tests/test_hash_trie_set.py::test_instance_of_set PASSED tests/test_hash_trie_set.py::test_lt_le_gt_ge PASSED tests/test_list.py::test_literalish_works PASSED tests/test_list.py::test_first_and_rest PASSED tests/test_list.py::test_instantiate_large_list PASSED tests/test_list.py::test_iteration PASSED tests/test_list.py::test_push_front PASSED tests/test_list.py::test_push_front_empty_list PASSED tests/test_list.py::test_truthiness PASSED tests/test_list.py::test_len PASSED tests/test_list.py::test_first_illegal_on_empty_list PASSED tests/test_list.py::test_rest_return_self_on_empty_list PASSED tests/test_list.py::test_reverse PASSED tests/test_list.py::test_inequality PASSED tests/test_list.py::test_repr PASSED tests/test_list.py::test_hashing PASSED tests/test_list.py::test_sequence PASSED tests/test_list.py::test_drop_first PASSED tests/test_list.py::test_drop_first_empty PASSED tests/test_list.py::test_more_eq PASSED tests/test_list.py::test_pickle PASSED tests/test_queue.py::test_literalish_works PASSED tests/test_queue.py::test_peek_dequeue PASSED tests/test_queue.py::test_instantiate_large_list PASSED tests/test_queue.py::test_iteration PASSED tests/test_queue.py::test_enqueue PASSED tests/test_queue.py::test_enqueue_empty_list PASSED tests/test_queue.py::test_truthiness PASSED tests/test_queue.py::test_len PASSED tests/test_queue.py::test_peek_illegal_on_empty_list PASSED tests/test_queue.py::test_inequality PASSED tests/test_queue.py::test_repr PASSED tests/test_queue.py::test_sequence PASSED tests/test_queue.py::test_dequeue PASSED tests/test_queue.py::test_dequeue_empty PASSED tests/test_queue.py::test_more_eq PASSED tests/test_queue.py::test_hashing PASSED tests/test_queue.py::test_unhashable_contents PASSED ======== 116 passed ========