1 ============================= test session starts ==============================
2 platform sunos5 -- Python $(PYTHON_VERSION).X -- $(PYTHON)
3 cachedir: .pytest_cache
5 configfile: pyproject.toml
6 collecting ... collected 116 items
8 tests/test_hash_trie_map.py::test_instance_of_hashable PASSED
9 tests/test_hash_trie_map.py::test_instance_of_map PASSED
10 tests/test_hash_trie_map.py::test_literalish_works PASSED
11 tests/test_hash_trie_map.py::test_empty_initialization PASSED
12 tests/test_hash_trie_map.py::test_initialization_with_one_element PASSED
13 tests/test_hash_trie_map.py::test_index_non_existing_raises_key_error PASSED
14 tests/test_hash_trie_map.py::test_remove_non_existing_element_raises_key_error PASSED
15 tests/test_hash_trie_map.py::test_various_iterations PASSED
16 tests/test_hash_trie_map.py::test_initialization_with_two_elements PASSED
17 tests/test_hash_trie_map.py::test_initialization_with_many_elements PASSED
18 tests/test_hash_trie_map.py::test_access_non_existing_element PASSED
19 tests/test_hash_trie_map.py::test_overwrite_existing_element PASSED
20 tests/test_hash_trie_map.py::test_hashing PASSED
21 tests/test_hash_trie_map.py::test_same_hash_when_content_the_same_but_underlying_vector_size_differs PASSED
22 tests/test_hash_trie_map.py::test_map_does_not_hash_values_on_second_hash_invocation PASSED
23 tests/test_hash_trie_map.py::test_equal PASSED
24 tests/test_hash_trie_map.py::test_equal_with_different_insertion_order PASSED
25 tests/test_hash_trie_map.py::test_not_equal PASSED
26 tests/test_hash_trie_map.py::test_not_equal_to_dict PASSED
27 tests/test_hash_trie_map.py::test_update_with_multiple_arguments PASSED
28 tests/test_hash_trie_map.py::test_update_one_argument PASSED
29 tests/test_hash_trie_map.py::test_update_no_arguments PASSED
30 tests/test_hash_trie_map.py::test_iteration_with_many_elements PASSED
31 tests/test_hash_trie_map.py::test_repr PASSED
32 tests/test_hash_trie_map.py::test_str PASSED
33 tests/test_hash_trie_map.py::test_empty_truthiness PASSED
34 tests/test_hash_trie_map.py::test_iterable PASSED
35 tests/test_hash_trie_map.py::test_convert_hashtriemap PASSED
36 tests/test_hash_trie_map.py::test_fast_convert_hashtriemap PASSED
37 tests/test_hash_trie_map.py::test_more_eq PASSED
38 tests/test_hash_trie_map.py::test_pickle PASSED
39 tests/test_hash_trie_map.py::test_get PASSED
40 tests/test_hash_trie_map.py::test_views_abc[Set-keys] PASSED
41 tests/test_hash_trie_map.py::test_views_abc[Set-values] PASSED
42 tests/test_hash_trie_map.py::test_views_abc[Set-items] PASSED
43 tests/test_hash_trie_map.py::test_views_abc[MappingView-keys] PASSED
44 tests/test_hash_trie_map.py::test_views_abc[MappingView-values] PASSED
45 tests/test_hash_trie_map.py::test_views_abc[MappingView-items] PASSED
46 tests/test_hash_trie_map.py::test_views_abc[KeysView-keys] PASSED
47 tests/test_hash_trie_map.py::test_views_abc[KeysView-values] PASSED
48 tests/test_hash_trie_map.py::test_views_abc[KeysView-items] PASSED
49 tests/test_hash_trie_map.py::test_views_abc[ValuesView-keys] PASSED
50 tests/test_hash_trie_map.py::test_views_abc[ValuesView-values] PASSED
51 tests/test_hash_trie_map.py::test_views_abc[ValuesView-items] PASSED
52 tests/test_hash_trie_map.py::test_views_abc[ItemsView-keys] PASSED
53 tests/test_hash_trie_map.py::test_views_abc[ItemsView-values] PASSED
54 tests/test_hash_trie_map.py::test_views_abc[ItemsView-items] PASSED
55 tests/test_hash_trie_map.py::test_keys PASSED
56 tests/test_hash_trie_map.py::test_keys_setlike PASSED
57 tests/test_hash_trie_map.py::test_keys_repr PASSED
58 tests/test_hash_trie_map.py::test_values PASSED
59 tests/test_hash_trie_map.py::test_values_repr PASSED
60 tests/test_hash_trie_map.py::test_items PASSED
61 tests/test_hash_trie_map.py::test_items_setlike PASSED
62 tests/test_hash_trie_map.py::test_items_repr PASSED
63 tests/test_hash_trie_map.py::test_fromkeys PASSED
64 tests/test_hash_trie_map.py::test_fromkeys_explicit_value PASSED
65 tests/test_hash_trie_map.py::test_fromkeys_explicit_value_not_copied PASSED
66 tests/test_hash_trie_map.py::test_update_with_iterable_of_kvs PASSED
67 tests/test_hash_trie_set.py::test_key_is_tuple PASSED
68 tests/test_hash_trie_set.py::test_key_is_not_tuple PASSED
69 tests/test_hash_trie_set.py::test_hashing PASSED
70 tests/test_hash_trie_set.py::test_empty_truthiness PASSED
71 tests/test_hash_trie_set.py::test_contains_elements_that_it_was_initialized_with PASSED
72 tests/test_hash_trie_set.py::test_is_immutable PASSED
73 tests/test_hash_trie_set.py::test_remove_when_not_present PASSED
74 tests/test_hash_trie_set.py::test_discard PASSED
75 tests/test_hash_trie_set.py::test_is_iterable PASSED
76 tests/test_hash_trie_set.py::test_contains PASSED
77 tests/test_hash_trie_set.py::test_supports_set_operations PASSED
78 tests/test_hash_trie_set.py::test_supports_set_comparisons PASSED
79 tests/test_hash_trie_set.py::test_repr PASSED
80 tests/test_hash_trie_set.py::test_update PASSED
81 tests/test_hash_trie_set.py::test_update_no_elements PASSED
82 tests/test_hash_trie_set.py::test_iterable PASSED
83 tests/test_hash_trie_set.py::test_more_eq PASSED
84 tests/test_hash_trie_set.py::test_more_set_comparisons PASSED
85 tests/test_hash_trie_set.py::test_pickle PASSED
86 tests/test_hash_trie_set.py::test_instance_of_set PASSED
87 tests/test_hash_trie_set.py::test_lt_le_gt_ge PASSED
88 tests/test_list.py::test_literalish_works PASSED
89 tests/test_list.py::test_first_and_rest PASSED
90 tests/test_list.py::test_instantiate_large_list PASSED
91 tests/test_list.py::test_iteration PASSED
92 tests/test_list.py::test_push_front PASSED
93 tests/test_list.py::test_push_front_empty_list PASSED
94 tests/test_list.py::test_truthiness PASSED
95 tests/test_list.py::test_len PASSED
96 tests/test_list.py::test_first_illegal_on_empty_list PASSED
97 tests/test_list.py::test_rest_return_self_on_empty_list PASSED
98 tests/test_list.py::test_reverse PASSED
99 tests/test_list.py::test_inequality PASSED
100 tests/test_list.py::test_repr PASSED
101 tests/test_list.py::test_hashing PASSED
102 tests/test_list.py::test_sequence PASSED
103 tests/test_list.py::test_drop_first PASSED
104 tests/test_list.py::test_drop_first_empty PASSED
105 tests/test_list.py::test_more_eq PASSED
106 tests/test_list.py::test_pickle PASSED
107 tests/test_queue.py::test_literalish_works PASSED
108 tests/test_queue.py::test_peek_dequeue PASSED
109 tests/test_queue.py::test_instantiate_large_list PASSED
110 tests/test_queue.py::test_iteration PASSED
111 tests/test_queue.py::test_enqueue PASSED
112 tests/test_queue.py::test_enqueue_empty_list PASSED
113 tests/test_queue.py::test_truthiness PASSED
114 tests/test_queue.py::test_len PASSED
115 tests/test_queue.py::test_peek_illegal_on_empty_list PASSED
116 tests/test_queue.py::test_inequality PASSED
117 tests/test_queue.py::test_repr PASSED
118 tests/test_queue.py::test_sequence PASSED
119 tests/test_queue.py::test_dequeue PASSED
120 tests/test_queue.py::test_dequeue_empty PASSED
121 tests/test_queue.py::test_more_eq PASSED
122 tests/test_queue.py::test_hashing PASSED
123 tests/test_queue.py::test_unhashable_contents PASSED
125 ======== 116 passed ========