1 py$(PYV): remove tox env folder $(@D)/.tox/py$(PYV)
2 py$(PYV): commands[0]> python -m py.test -W error
3 ============================= test session starts ==============================
4 platform sunos5 -- Python $(PYTHON_VERSION).X -- $(@D)/.tox/py$(PYV)/bin/python
5 cachedir: .tox/py$(PYV)/.pytest_cache
7 collecting ... collected 202 items
9 tests/test_calc.py::test_memoize PASSED
10 tests/test_calc.py::test_memoize_args_kwargs PASSED
11 tests/test_calc.py::test_memoize_memory PASSED
12 tests/test_calc.py::test_memoize_key_func PASSED
13 tests/test_calc.py::test_make_lookuper PASSED
14 tests/test_calc.py::test_make_lookuper_nested PASSED
15 tests/test_calc.py::test_silent_lookuper PASSED
16 tests/test_calc.py::test_silnent_lookuper_nested PASSED
17 tests/test_calc.py::test_cache[int] PASSED
18 tests/test_calc.py::test_cache[timedelta] PASSED
19 tests/test_calc.py::test_cache_mixed_args PASSED
20 tests/test_calc.py::test_cache_timedout PASSED
21 tests/test_calc.py::test_cache_invalidate PASSED
22 tests/test_colls.py::test_empty PASSED
23 tests/test_colls.py::test_empty_iter PASSED
24 tests/test_colls.py::test_empty_quirks PASSED
25 tests/test_colls.py::test_iteritems PASSED
26 tests/test_colls.py::test_itervalues PASSED
27 tests/test_colls.py::test_merge PASSED
28 tests/test_colls.py::test_join PASSED
29 tests/test_colls.py::test_join_iter PASSED
30 tests/test_colls.py::test_merge_with PASSED
31 tests/test_colls.py::test_join_with PASSED
32 tests/test_colls.py::test_walk PASSED
33 tests/test_colls.py::test_walk_iter PASSED
34 tests/test_colls.py::test_walk_extended PASSED
35 tests/test_colls.py::test_walk_keys PASSED
36 tests/test_colls.py::test_walk_values PASSED
37 tests/test_colls.py::test_walk_values_defaultdict PASSED
38 tests/test_colls.py::test_select PASSED
39 tests/test_colls.py::test_select_extended PASSED
40 tests/test_colls.py::test_select_keys PASSED
41 tests/test_colls.py::test_select_values PASSED
42 tests/test_colls.py::test_compact PASSED
43 tests/test_colls.py::test_is_distinct PASSED
44 tests/test_colls.py::test_all PASSED
45 tests/test_colls.py::test_all_extended PASSED
46 tests/test_colls.py::test_any PASSED
47 tests/test_colls.py::test_one PASSED
48 tests/test_colls.py::test_none PASSED
49 tests/test_colls.py::test_some PASSED
50 tests/test_colls.py::test_zipdict PASSED
51 tests/test_colls.py::test_flip PASSED
52 tests/test_colls.py::test_project PASSED
53 tests/test_colls.py::test_omit PASSED
54 tests/test_colls.py::test_zip_values PASSED
55 tests/test_colls.py::test_zip_dicts PASSED
56 tests/test_colls.py::test_get[get_in] PASSED
57 tests/test_colls.py::test_get[get_lax] PASSED
58 tests/test_colls.py::test_get_list[get_in] PASSED
59 tests/test_colls.py::test_get_list[get_lax] PASSED
60 tests/test_colls.py::test_get_error PASSED
61 tests/test_colls.py::test_set_in PASSED
62 tests/test_colls.py::test_set_in_list PASSED
63 tests/test_colls.py::test_update_in PASSED
64 tests/test_colls.py::test_del_in PASSED
65 tests/test_colls.py::test_has_path PASSED
66 tests/test_colls.py::test_has_path_list PASSED
67 tests/test_colls.py::test_where PASSED
68 tests/test_colls.py::test_lwhere PASSED
69 tests/test_colls.py::test_pluck PASSED
70 tests/test_colls.py::test_pluck_attr PASSED
71 tests/test_colls.py::test_invoke PASSED
72 tests/test_debug.py::test_tap PASSED
73 tests/test_debug.py::test_log_calls PASSED
74 tests/test_debug.py::test_print_calls PASSED
75 tests/test_debug.py::test_log_calls_raise PASSED
76 tests/test_debug.py::test_log_errors PASSED
77 tests/test_debug.py::test_log_errors_manager PASSED
78 tests/test_debug.py::test_print_errors PASSED
79 tests/test_debug.py::test_print_errors_manager PASSED
80 tests/test_debug.py::test_print_errors_recursion PASSED
81 tests/test_debug.py::test_log_durations PASSED
82 tests/test_debug.py::test_log_durations_ex PASSED
83 tests/test_debug.py::test_log_iter_dirations PASSED
84 tests/test_decorators.py::test_decorator_no_args PASSED
85 tests/test_decorators.py::test_decorator_with_args PASSED
86 tests/test_decorators.py::test_decorator_kw_only_args PASSED
87 tests/test_decorators.py::test_decorator_access_args PASSED
88 tests/test_decorators.py::test_double_decorator_defaults PASSED
89 tests/test_decorators.py::test_decorator_with_method PASSED
90 tests/test_decorators.py::test_decorator_with_method_descriptor PASSED
91 tests/test_decorators.py::test_chain_arg_access PASSED
92 tests/test_decorators.py::test_meta_attribtes PASSED
93 tests/test_decorators.py::test_decorator_introspection PASSED
94 tests/test_flow.py::test_silent PASSED
95 tests/test_flow.py::test_ignore PASSED
96 tests/test_flow.py::test_raiser PASSED
97 tests/test_flow.py::test_suppress PASSED
98 tests/test_flow.py::test_reraise PASSED
99 tests/test_flow.py::test_retry PASSED
100 tests/test_flow.py::test_retry_timeout PASSED
101 tests/test_flow.py::test_retry_many_errors PASSED
102 tests/test_flow.py::test_retry_filter PASSED
103 tests/test_flow.py::test_fallback PASSED
104 tests/test_flow.py::test_limit_error_rate PASSED
105 tests/test_flow.py::test_throttle[int] PASSED
106 tests/test_flow.py::test_throttle[timedelta] PASSED
107 tests/test_flow.py::test_throttle_class PASSED
108 tests/test_flow.py::test_post_processing PASSED
109 tests/test_flow.py::test_collecting PASSED
110 tests/test_flow.py::test_once PASSED
111 tests/test_flow.py::test_once_per PASSED
112 tests/test_flow.py::test_once_per_args PASSED
113 tests/test_flow.py::test_wrap_with PASSED
114 tests/test_funcmakers.py::test_callable PASSED
115 tests/test_funcmakers.py::test_int PASSED
116 tests/test_funcmakers.py::test_slice PASSED
117 tests/test_funcmakers.py::test_str PASSED
118 tests/test_funcmakers.py::test_dict PASSED
119 tests/test_funcmakers.py::test_set PASSED
120 tests/test_funcolls.py::test_all_fn PASSED
121 tests/test_funcolls.py::test_any_fn PASSED
122 tests/test_funcolls.py::test_none_fn PASSED
123 tests/test_funcolls.py::test_one_fn PASSED
124 tests/test_funcolls.py::test_some_fn PASSED
125 tests/test_funcolls.py::test_extended_fns PASSED
126 tests/test_funcs.py::test_caller PASSED
127 tests/test_funcs.py::test_constantly PASSED
128 tests/test_funcs.py::test_partial PASSED
129 tests/test_funcs.py::test_func_partial PASSED
130 tests/test_funcs.py::test_rpartial PASSED
131 tests/test_funcs.py::test_curry PASSED
132 tests/test_funcs.py::test_curry_funcy PASSED
133 tests/test_funcs.py::test_rcurry PASSED
134 tests/test_funcs.py::test_autocurry PASSED
135 tests/test_funcs.py::test_autocurry_named PASSED
136 tests/test_funcs.py::test_autocurry_kwargs PASSED
137 tests/test_funcs.py::test_autocurry_kwonly PASSED
138 tests/test_funcs.py::test_autocurry_posonly PASSED
139 tests/test_funcs.py::test_autocurry_builtin PASSED
140 tests/test_funcs.py::test_autocurry_hard PASSED
141 tests/test_funcs.py::test_autocurry_class PASSED
142 tests/test_funcs.py::test_autocurry_docstring PASSED
143 tests/test_funcs.py::test_compose PASSED
144 tests/test_funcs.py::test_rcompose PASSED
145 tests/test_funcs.py::test_complement PASSED
146 tests/test_funcs.py::test_juxt PASSED
147 tests/test_funcs.py::test_iffy PASSED
148 tests/test_interface.py::test_docs PASSED
149 tests/test_objects.py::test_cached_property PASSED
150 tests/test_objects.py::test_cached_property_doc PASSED
151 tests/test_objects.py::test_cached_readonly PASSED
152 tests/test_objects.py::test_wrap_prop PASSED
153 tests/test_objects.py::test_monkey PASSED
154 tests/test_objects.py::test_monkey_with_name PASSED
155 tests/test_objects.py::test_monkey_property PASSED
156 tests/test_objects.py::test_monkey_module PASSED
157 tests/test_objects.py::test_lazy_object PASSED
158 tests/test_seqs.py::test_repeatedly PASSED
159 tests/test_seqs.py::test_iterate PASSED
160 tests/test_seqs.py::test_take PASSED
161 tests/test_seqs.py::test_drop PASSED
162 tests/test_seqs.py::test_first PASSED
163 tests/test_seqs.py::test_second PASSED
164 tests/test_seqs.py::test_last PASSED
165 tests/test_seqs.py::test_nth PASSED
166 tests/test_seqs.py::test_butlast PASSED
167 tests/test_seqs.py::test_ilen PASSED
168 tests/test_seqs.py::test_lmap PASSED
169 tests/test_seqs.py::test_filter PASSED
170 tests/test_seqs.py::test_remove PASSED
171 tests/test_seqs.py::test_keep PASSED
172 tests/test_seqs.py::test_concat PASSED
173 tests/test_seqs.py::test_cat PASSED
174 tests/test_seqs.py::test_flatten PASSED
175 tests/test_seqs.py::test_flatten_follow PASSED
176 tests/test_seqs.py::test_mapcat PASSED
177 tests/test_seqs.py::test_interleave PASSED
178 tests/test_seqs.py::test_iterpose PASSED
179 tests/test_seqs.py::test_takewhile PASSED
180 tests/test_seqs.py::test_distinct PASSED
181 tests/test_seqs.py::test_split PASSED
182 tests/test_seqs.py::test_lsplit PASSED
183 tests/test_seqs.py::test_split_at PASSED
184 tests/test_seqs.py::test_split_by PASSED
185 tests/test_seqs.py::test_group_by PASSED
186 tests/test_seqs.py::test_group_by_keys PASSED
187 tests/test_seqs.py::test_group_values PASSED
188 tests/test_seqs.py::test_count_by PASSED
189 tests/test_seqs.py::test_count_by_is_defaultdict PASSED
190 tests/test_seqs.py::test_count_reps PASSED
191 tests/test_seqs.py::test_partition PASSED
192 tests/test_seqs.py::test_chunks PASSED
193 tests/test_seqs.py::test_partition_by PASSED
194 tests/test_seqs.py::test_with_prev PASSED
195 tests/test_seqs.py::test_with_next PASSED
196 tests/test_seqs.py::test_pairwise PASSED
197 tests/test_seqs.py::test_lzip PASSED
198 tests/test_seqs.py::test_lzip_strict PASSED
199 tests/test_seqs.py::test_reductions PASSED
200 tests/test_seqs.py::test_sums PASSED
201 tests/test_seqs.py::test_without PASSED
202 tests/test_strings.py::test_re_find PASSED
203 tests/test_strings.py::test_re_all PASSED
204 tests/test_strings.py::test_str_join PASSED
205 tests/test_strings.py::test_cut_prefix PASSED
206 tests/test_strings.py::test_cut_suffix PASSED
207 tests/test_tree.py::test_tree_leaves PASSED
208 tests/test_tree.py::test_tree_nodes PASSED
209 tests/test_types.py::test_iterable PASSED
210 tests/test_types.py::test_is_iter PASSED
212 ======== 202 passed ========