1 py$(PYV): remove tox env folder $(@D)/.tox/py$(PYV)
2 py$(PYV): commands[0]> make test
3 mypy --ignore-missing-imports tests/test_typing.py
4 Success: no issues found in 1 source file
9 -Wignore:::mongomock: \
10 -Wignore:::mongomock.__version__: \
11 -Wignore:::pkg_resources: \
13 tests.test_alchemy (unittest.loader.ModuleSkipped) ... skipped 'sqlalchemy tests disabled.'
14 test_abstract_factory_cannot_be_called (tests.test_base.AbstractFactoryTestCase) ... ok
15 test_abstract_factory_not_inherited (tests.test_base.AbstractFactoryTestCase)
16 abstract=True isn't propagated to child classes. ... ok
17 test_abstract_or_model_is_required (tests.test_base.AbstractFactoryTestCase) ... ok
18 test_factory_for_and_abstract_factory_optional (tests.test_base.AbstractFactoryTestCase)
19 Ensure that Meta.abstract is optional. ... ok
20 test_factory_for_optional (tests.test_base.AbstractFactoryTestCase)
21 Ensure that model= is optional for abstract=True. ... ok
22 test_classmethod (tests.test_base.DeclarationParsingTests) ... ok
23 test_custom_creation (tests.test_base.FactoryCreationTestCase) ... ok
24 test_factory_for (tests.test_base.FactoryCreationTestCase) ... ok
25 test_inheritance_with_stub (tests.test_base.FactoryCreationTestCase) ... ok
26 test_no_associated_class (tests.test_base.FactoryCreationTestCase) ... ok
27 test_stub (tests.test_base.FactoryCreationTestCase) ... ok
28 test_stub_and_subfactory (tests.test_base.FactoryCreationTestCase) ... ok
29 test_build_strategy (tests.test_base.FactoryDefaultStrategyTestCase) ... ok
30 test_change_strategy (tests.test_base.FactoryDefaultStrategyTestCase) ... ok
31 test_create_strategy (tests.test_base.FactoryDefaultStrategyTestCase) ... ok
32 test_stub_strategy (tests.test_base.FactoryDefaultStrategyTestCase) ... ok
33 test_stub_with_build_strategy (tests.test_base.FactoryDefaultStrategyTestCase) ... ok
34 test_stub_with_create_strategy (tests.test_base.FactoryDefaultStrategyTestCase) ... ok
35 test_unknown_strategy (tests.test_base.FactoryDefaultStrategyTestCase) ... ok
36 test_reset_sequence (tests.test_base.FactorySequenceTestCase) ... ok
37 test_reset_sequence_subclass_fails (tests.test_base.FactorySequenceTestCase)
38 Tests that the sequence of a 'slave' factory cannot be reset. ... ok
39 test_reset_sequence_subclass_force (tests.test_base.FactorySequenceTestCase)
40 Tests that reset_sequence(force=True) works. ... ok
41 test_reset_sequence_subclass_parent (tests.test_base.FactorySequenceTestCase)
42 Tests that the sequence of a 'slave' factory cannot be reset. ... ok
43 test_reset_sequence_with_value (tests.test_base.FactorySequenceTestCase) ... ok
44 test_display (tests.test_base.FactoryTestCase) ... ok
45 test_inheritance_with_sequence (tests.test_base.FactoryTestCase)
46 Tests that sequence IDs are shared between parent and son. ... ok
47 test_lazy_attribute_non_existent_param (tests.test_base.FactoryTestCase) ... ok
48 test_magic_happens (tests.test_base.FactoryTestCase)
49 Calling a FooFactory doesn't yield a FooFactory instance. ... ok
50 test_base_attrs (tests.test_base.OptionsTests) ... ok
51 test_declaration_collecting (tests.test_base.OptionsTests) ... ok
52 test_factory_as_meta_model_raises_exception (tests.test_base.OptionsTests) ... ok
53 test_inherited_declaration_collecting (tests.test_base.OptionsTests) ... ok
54 test_inherited_declaration_shadowing (tests.test_base.OptionsTests) ... ok
55 test_classlevel_extraction (tests.test_base.PostGenerationParsingTestCase) ... ok
56 test_extraction (tests.test_base.PostGenerationParsingTestCase) ... ok
57 test_base_factory (tests.test_base.SafetyTestCase) ... ok
58 test_chaining (tests.test_declarations.DigTestCase) ... ok
59 test_cache (tests.test_declarations.FactoryWrapperTestCase)
60 Ensure that _FactoryWrapper tries to import only once. ... ok
61 test_class (tests.test_declarations.FactoryWrapperTestCase) ... ok
62 test_invalid_path (tests.test_declarations.FactoryWrapperTestCase) ... ok
63 test_lazyness (tests.test_declarations.FactoryWrapperTestCase) ... ok
64 test_path (tests.test_declarations.FactoryWrapperTestCase) ... ok
65 test_cycle (tests.test_declarations.IteratorTestCase) ... ok
66 test_getter (tests.test_declarations.IteratorTestCase) ... ok
67 test_initial_reset (tests.test_declarations.IteratorTestCase) ... ok
68 test_no_cycling (tests.test_declarations.IteratorTestCase) ... ok
69 test_reset_cycle (tests.test_declarations.IteratorTestCase) ... ok
70 test_reset_no_cycling (tests.test_declarations.IteratorTestCase) ... ok
71 test_init (tests.test_declarations.MaybeTestCase) ... ok
72 test_errors (tests.test_declarations.OrderedDeclarationTestCase) ... ok
73 test_decorator_simple (tests.test_declarations.PostGenerationDeclarationTestCase) ... ok
74 test_post_generation (tests.test_declarations.PostGenerationDeclarationTestCase) ... ok
75 test_call_with_method_args (tests.test_declarations.PostGenerationMethodCallTestCase) ... ok
76 test_call_with_method_kwargs (tests.test_declarations.PostGenerationMethodCallTestCase) ... ok
77 test_call_with_passed_extracted_int (tests.test_declarations.PostGenerationMethodCallTestCase) ... ok
78 test_call_with_passed_extracted_iterable (tests.test_declarations.PostGenerationMethodCallTestCase) ... ok
79 test_call_with_passed_extracted_string (tests.test_declarations.PostGenerationMethodCallTestCase) ... ok
80 test_call_with_passed_kwargs (tests.test_declarations.PostGenerationMethodCallTestCase) ... ok
81 test_multi_call_with_multi_method_args (tests.test_declarations.PostGenerationMethodCallTestCase) ... ok
82 test_simplest_setup_and_call (tests.test_declarations.PostGenerationMethodCallTestCase) ... ok
83 test_post_generation_declaration_order (tests.test_declarations.PostGenerationOrdering) ... ok
84 test_default (tests.test_declarations.SelfAttributeTestCase) ... ok
85 test_dot (tests.test_declarations.SelfAttributeTestCase) ... ok
86 test_grandparent (tests.test_declarations.SelfAttributeTestCase) ... ok
87 test_parent (tests.test_declarations.SelfAttributeTestCase) ... ok
88 test_standard (tests.test_declarations.SelfAttributeTestCase) ... ok
89 test_transform (tests.test_declarations.TransformerTestCase) ... ok
90 test_subfactory_to_factorylike_model (tests.test_dev_experience.DeclarationTests)
91 A helpful error message occurs when pointing a subfactory to a model. ... ok
92 test_subfactory_to_model (tests.test_dev_experience.DeclarationTests)
93 A helpful error message occurs when pointing a subfactory to a model. ... ok
94 tests.test_django (unittest.loader.ModuleSkipped) ... skipped 'django tests disabled.'
95 test_simple_usage (tests.test_docs_internals.DocsInternalsTests) ... ok
96 test_add_provider (tests.test_faker.FakerTests) ... ok
97 test_faker_customization (tests.test_faker.FakerTests)
98 Factory declarations in Faker parameters should be accepted. ... ok
99 test_full_factory (tests.test_faker.FakerTests) ... ok
100 test_override_locale (tests.test_faker.FakerTests) ... ok
101 test_simple_biased (tests.test_faker.FakerTests) ... ok
102 test_simple_call (tests.test_fuzzy.FuzzyAttributeTestCase) ... ok
103 test_generator (tests.test_fuzzy.FuzzyChoiceTestCase) ... ok
104 test_getter (tests.test_fuzzy.FuzzyChoiceTestCase) ... ok
105 test_lazy_generator (tests.test_fuzzy.FuzzyChoiceTestCase) ... ok
106 test_mock (tests.test_fuzzy.FuzzyChoiceTestCase) ... ok
107 test_unbiased (tests.test_fuzzy.FuzzyChoiceTestCase) ... ok
108 test_accurate_definition (tests.test_fuzzy.FuzzyDateTestCase)
109 Tests all ways of defining a FuzzyDate. ... ok
110 test_biased (tests.test_fuzzy.FuzzyDateTestCase)
111 Tests a FuzzyDate with a biased random.randint. ... ok
112 test_biased_partial (tests.test_fuzzy.FuzzyDateTestCase)
113 Tests a FuzzyDate with a biased random and implicit upper bound. ... ok
114 test_invalid_definition (tests.test_fuzzy.FuzzyDateTestCase) ... ok
115 test_invalid_partial_definition (tests.test_fuzzy.FuzzyDateTestCase) ... ok
116 test_partial_definition (tests.test_fuzzy.FuzzyDateTestCase)
117 Test defining a FuzzyDate without passing an end date. ... ok
118 test_accurate_definition (tests.test_fuzzy.FuzzyDateTimeTestCase)
119 Tests explicit definition of a FuzzyDateTime. ... ok
120 test_biased (tests.test_fuzzy.FuzzyDateTimeTestCase)
121 Tests a FuzzyDate with a biased random.randint. ... ok
122 test_biased_partial (tests.test_fuzzy.FuzzyDateTimeTestCase)
123 Tests a FuzzyDate with a biased random and implicit upper bound. ... ok
124 test_force_day (tests.test_fuzzy.FuzzyDateTimeTestCase) ... ok
125 test_force_hour (tests.test_fuzzy.FuzzyDateTimeTestCase) ... ok
126 test_force_microsecond (tests.test_fuzzy.FuzzyDateTimeTestCase) ... ok
127 test_force_minute (tests.test_fuzzy.FuzzyDateTimeTestCase) ... ok
128 test_force_month (tests.test_fuzzy.FuzzyDateTimeTestCase) ... ok
129 test_force_second (tests.test_fuzzy.FuzzyDateTimeTestCase) ... ok
130 test_force_year (tests.test_fuzzy.FuzzyDateTimeTestCase) ... ok
131 test_invalid_definition (tests.test_fuzzy.FuzzyDateTimeTestCase) ... ok
132 test_invalid_partial_definition (tests.test_fuzzy.FuzzyDateTimeTestCase) ... ok
133 test_naive_end (tests.test_fuzzy.FuzzyDateTimeTestCase)
134 Tests that a timezone-naive end datetime is rejected. ... ok
135 test_naive_start (tests.test_fuzzy.FuzzyDateTimeTestCase)
136 Tests that a timezone-naive start datetime is rejected. ... ok
137 test_partial_definition (tests.test_fuzzy.FuzzyDateTimeTestCase)
138 Test defining a FuzzyDateTime without passing an end date. ... ok
139 test_biased (tests.test_fuzzy.FuzzyDecimalTestCase) ... ok
140 test_biased_high_only (tests.test_fuzzy.FuzzyDecimalTestCase) ... ok
141 test_definition (tests.test_fuzzy.FuzzyDecimalTestCase)
142 Tests all ways of defining a FuzzyDecimal. ... ok
143 test_no_approximation (tests.test_fuzzy.FuzzyDecimalTestCase)
144 We should not go through floats in our fuzzy calls unless actually needed. ... ok
145 test_precision (tests.test_fuzzy.FuzzyDecimalTestCase) ... ok
146 test_biased (tests.test_fuzzy.FuzzyFloatTestCase) ... ok
147 test_biased_high_only (tests.test_fuzzy.FuzzyFloatTestCase) ... ok
148 test_default_precision (tests.test_fuzzy.FuzzyFloatTestCase) ... ok
149 test_definition (tests.test_fuzzy.FuzzyFloatTestCase)
150 Tests all ways of defining a FuzzyFloat. ... ok
151 test_precision (tests.test_fuzzy.FuzzyFloatTestCase) ... ok
152 test_biased (tests.test_fuzzy.FuzzyIntegerTestCase) ... ok
153 test_biased_high_only (tests.test_fuzzy.FuzzyIntegerTestCase) ... ok
154 test_biased_with_step (tests.test_fuzzy.FuzzyIntegerTestCase) ... ok
155 test_definition (tests.test_fuzzy.FuzzyIntegerTestCase)
156 Tests all ways of defining a FuzzyInteger. ... ok
157 test_accurate_definition (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase)
158 Tests explicit definition of a FuzzyNaiveDateTime. ... ok
159 test_aware_end (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase)
160 Tests that a timezone-aware end datetime is rejected. ... ok
161 test_aware_start (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase)
162 Tests that a timezone-aware start datetime is rejected. ... ok
163 test_biased (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase)
164 Tests a FuzzyDate with a biased random.randint. ... ok
165 test_biased_partial (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase)
166 Tests a FuzzyDate with a biased random and implicit upper bound. ... ok
167 test_force_day (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase) ... ok
168 test_force_hour (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase) ... ok
169 test_force_microsecond (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase) ... ok
170 test_force_minute (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase) ... ok
171 test_force_month (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase) ... ok
172 test_force_second (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase) ... ok
173 test_force_year (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase) ... ok
174 test_invalid_definition (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase) ... ok
175 test_invalid_partial_definition (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase) ... ok
176 test_partial_definition (tests.test_fuzzy.FuzzyNaiveDateTimeTestCase)
177 Test defining a FuzzyNaiveDateTime without passing an end date. ... ok
178 test_reset_state (tests.test_fuzzy.FuzzyRandomTestCase) ... ok
179 test_seeding (tests.test_fuzzy.FuzzyRandomTestCase) ... ok
180 test_seeding_warning (tests.test_fuzzy.FuzzyRandomTestCase) ... ok
181 test_generator (tests.test_fuzzy.FuzzyTextTestCase) ... ok
182 test_mock (tests.test_fuzzy.FuzzyTextTestCase) ... ok
183 test_unbiased (tests.test_fuzzy.FuzzyTextTestCase) ... ok
184 test_alternate_logger (tests.test_helpers.DebugTest) ... ok
185 test_default_logger (tests.test_helpers.DebugTest) ... ok
186 test_restores_logging_on_error (tests.test_helpers.DebugTest) ... ok
187 tests.test_mongoengine (unittest.loader.ModuleSkipped) ... skipped 'mongodb tests disabled.'
188 test_evaluated_without_locale (tests.test_regression.FakerRegressionTests)
189 Regression test for `KeyError: 'locale'` raised in `evaluate`. ... ok
190 test_locale_issue (tests.test_regression.FakerRegressionTests)
191 Regression test for `KeyError: 'locale'` ... ok
192 test_default_transform (tests.test_transformer.RelatedTest) ... ok
193 test_default_transform (tests.test_transformer.TransformerMaybeTest) ... ok
194 test_no_transform (tests.test_transformer.TransformerMaybeTest) ... ok
195 test_override (tests.test_transformer.TransformerMaybeTest) ... ok
196 test_yes_transform (tests.test_transformer.TransformerMaybeTest) ... ok
197 test_on_sequence (tests.test_transformer.TransformerSequenceTest) ... ok
198 test_on_user_supplied (tests.test_transformer.TransformerSequenceTest)
199 A transformer can wrap a call-time declaration ... ok
200 test_force_value (tests.test_transformer.TransformerTest) ... ok
201 test_force_value_declaration (tests.test_transformer.TransformerTest)
202 Pretty unlikely use case, but easy enough to cover. ... ok
203 test_force_value_declaration_context (tests.test_transformer.TransformerTest)
204 Ensure "forced" values run at the right level. ... ok
205 test_transform_count (tests.test_transformer.TransformerTest) ... ok
206 test_transform_faker (tests.test_transformer.TransformerTest) ... ok
207 test_transform_kwarg (tests.test_transformer.TransformerTest) ... ok
208 test_transform_linked (tests.test_transformer.TransformerTest) ... ok
209 test_trait_transform_applies (tests.test_transformer.TransformerTraitTest)
210 A trait-provided transformer should apply to existing values ... ok
211 test_trait_transform_applies_supplied (tests.test_transformer.TransformerTraitTest)
212 A trait-provided transformer should be overridden by caller-provided values ... ok
213 test_traits_off (tests.test_transformer.TransformerTraitTest) ... ok
214 test_simple_factory (tests.test_typing.TypingTests) ... ok
215 test_example (tests.test_using.CircularTestCase) ... ok
216 test_dict_extra_key (tests.test_using.DictTestCase) ... ok
217 test_dict_merged_fields (tests.test_using.DictTestCase) ... ok
218 test_dict_override (tests.test_using.DictTestCase) ... ok
219 test_empty_dict (tests.test_using.DictTestCase) ... ok
220 test_naive_dict (tests.test_using.DictTestCase) ... ok
221 test_nested_dicts (tests.test_using.DictTestCase) ... ok
222 test_sequence_dict (tests.test_using.DictTestCase) ... ok
223 test_existing_instance (tests.test_using.DjangoModelFactoryTestCase) ... skipped 'django tests disabled.'
224 test_existing_instance_complex_key (tests.test_using.DjangoModelFactoryTestCase) ... skipped 'django tests disabled.'
225 test_full_get_or_create (tests.test_using.DjangoModelFactoryTestCase)
226 Test a DjangoModelFactory with all fields in get_or_create. ... skipped 'django tests disabled.'
227 test_get_or_create (tests.test_using.DjangoModelFactoryTestCase) ... skipped 'django tests disabled.'
228 test_new_instance (tests.test_using.DjangoModelFactoryTestCase) ... skipped 'django tests disabled.'
229 test_new_instance_complex_key (tests.test_using.DjangoModelFactoryTestCase) ... skipped 'django tests disabled.'
230 test_no_get_or_create (tests.test_using.DjangoModelFactoryTestCase) ... skipped 'django tests disabled.'
231 test_sequence (tests.test_using.DjangoModelFactoryTestCase) ... skipped 'django tests disabled.'
232 test_simple (tests.test_using.DjangoModelFactoryTestCase) ... skipped 'django tests disabled.'
233 test_iterator (tests.test_using.IteratorTestCase) ... ok
234 test_iterator_decorator (tests.test_using.IteratorTestCase) ... ok
235 test_iterator_late_loading (tests.test_using.IteratorTestCase)
236 Ensure that Iterator doesn't unroll on class creation. ... ok
237 test_iterator_list_comprehension_protected (tests.test_using.IteratorTestCase) ... ok
238 test_iterator_time_manipulation (tests.test_using.IteratorTestCase) ... ok
239 test_build (tests.test_using.KwargAdjustTestCase) ... ok
240 test_rename (tests.test_using.KwargAdjustTestCase) ... ok
241 test_rename_non_existent_kwarg (tests.test_using.KwargAdjustTestCase) ... ok
242 test_empty_list (tests.test_using.ListTestCase) ... ok
243 test_list_extra_key (tests.test_using.ListTestCase) ... ok
244 test_list_merged_fields (tests.test_using.ListTestCase) ... ok
245 test_list_override (tests.test_using.ListTestCase) ... ok
246 test_long_list (tests.test_using.ListTestCase) ... ok
247 test_naive_list (tests.test_using.ListTestCase) ... ok
248 test_nested_lists (tests.test_using.ListTestCase) ... ok
249 test_sequence_list (tests.test_using.ListTestCase) ... ok
250 test_declarations (tests.test_using.MaybeTestCase) ... ok
251 test_post_generation (tests.test_using.MaybeTestCase) ... ok
252 test_simple_maybe (tests.test_using.MaybeTestCase) ... ok
253 test_build (tests.test_using.NonKwargParametersTestCase) ... ok
254 test_create (tests.test_using.NonKwargParametersTestCase) ... ok
255 test_post_generation (tests.test_using.PostGenerationTestCase) ... ok
256 test_post_generation_extraction (tests.test_using.PostGenerationTestCase) ... ok
257 test_post_generation_extraction_declaration (tests.test_using.PostGenerationTestCase) ... ok
258 test_post_generation_extraction_lambda (tests.test_using.PostGenerationTestCase) ... ok
259 test_post_generation_hook (tests.test_using.PostGenerationTestCase) ... ok
260 test_post_generation_method_call (tests.test_using.PostGenerationTestCase) ... ok
261 test_post_generation_override_with_extra (tests.test_using.PostGenerationTestCase) ... ok
262 test_no_extraction (tests.test_using.RelatedFactoryExtractionTestCase) ... ok
263 test_passed_none (tests.test_using.RelatedFactoryExtractionTestCase) ... ok
264 test_passed_value (tests.test_using.RelatedFactoryExtractionTestCase) ... ok
265 test_parameterized_related_factory (tests.test_using.RelatedFactoryTestCase) ... ok
266 test_related_factory (tests.test_using.RelatedFactoryTestCase) ... ok
267 test_related_factory_no_name (tests.test_using.RelatedFactoryTestCase) ... ok
268 test_related_factory_selfattribute (tests.test_using.RelatedFactoryTestCase) ... ok
269 test_related_factory_list_of_static_size (tests.test_using.RelatedListFactoryTestCase) ... ok
270 test_related_factory_list_of_varying_size (tests.test_using.RelatedListFactoryTestCase) ... ok
271 test_same_seed_is_used_between_fuzzy_and_faker_generators (tests.test_using.RepeatableRandomSeedFakerTests) ... ok
272 test_deep (tests.test_using.SelfReferentialTests) ... ok
273 test_no_parent (tests.test_using.SelfReferentialTests) ... ok
274 test_build (tests.test_using.SimpleBuildTestCase) ... ok
275 test_build_batch (tests.test_using.SimpleBuildTestCase) ... ok
276 test_build_to_dict (tests.test_using.SimpleBuildTestCase) ... ok
277 test_complex (tests.test_using.SimpleBuildTestCase) ... ok
278 test_create (tests.test_using.SimpleBuildTestCase) ... ok
279 test_create_batch (tests.test_using.SimpleBuildTestCase) ... ok
280 test_create_batch_custom_base (tests.test_using.SimpleBuildTestCase) ... skipped 'django tests disabled.'
281 test_create_custom_base (tests.test_using.SimpleBuildTestCase) ... skipped 'django tests disabled.'
282 test_generate_batch_build (tests.test_using.SimpleBuildTestCase) ... ok
283 test_generate_batch_create (tests.test_using.SimpleBuildTestCase) ... ok
284 test_generate_batch_create_custom_base (tests.test_using.SimpleBuildTestCase) ... skipped 'django tests disabled.'
285 test_generate_batch_stub (tests.test_using.SimpleBuildTestCase) ... ok
286 test_generate_build (tests.test_using.SimpleBuildTestCase) ... ok
287 test_generate_create (tests.test_using.SimpleBuildTestCase) ... ok
288 test_generate_create_custom_base (tests.test_using.SimpleBuildTestCase) ... skipped 'django tests disabled.'
289 test_generate_stub (tests.test_using.SimpleBuildTestCase) ... ok
290 test_make_factory (tests.test_using.SimpleBuildTestCase) ... ok
291 test_simple_generate_batch_build (tests.test_using.SimpleBuildTestCase) ... ok
292 test_simple_generate_batch_create (tests.test_using.SimpleBuildTestCase) ... ok
293 test_simple_generate_batch_create_custom_base (tests.test_using.SimpleBuildTestCase) ... skipped 'django tests disabled.'
294 test_simple_generate_build (tests.test_using.SimpleBuildTestCase) ... ok
295 test_simple_generate_create (tests.test_using.SimpleBuildTestCase) ... ok
296 test_simple_generate_create_custom_base (tests.test_using.SimpleBuildTestCase) ... skipped 'django tests disabled.'
297 test_stub (tests.test_using.SimpleBuildTestCase) ... ok
298 test_stub_batch (tests.test_using.SimpleBuildTestCase) ... ok
299 test_deep_nested_subfactory (tests.test_using.SubFactoryTestCase) ... ok
300 test_diamond_sub_factory (tests.test_using.SubFactoryTestCase)
301 Tests the case where an object has two fields with a common field. ... ok
302 test_function_container_attribute (tests.test_using.SubFactoryTestCase) ... ok
303 test_nested_sub_factory (tests.test_using.SubFactoryTestCase)
304 Test nested sub-factories. ... ok
305 test_nested_sub_factory_with_overridden_sub_factories (tests.test_using.SubFactoryTestCase)
306 Test nested sub-factories, with attributes overridden with subfactories. ... ok
307 test_nested_subfactory_with_override (tests.test_using.SubFactoryTestCase)
308 Tests replacing a SubFactory field with an actual value. ... ok
309 test_nonstrict_container_attribute (tests.test_using.SubFactoryTestCase) ... ok
310 test_strict_container_attribute (tests.test_using.SubFactoryTestCase) ... ok
311 test_sub_factory (tests.test_using.SubFactoryTestCase) ... ok
312 test_sub_factory_and_inheritance (tests.test_using.SubFactoryTestCase)
313 Test inheriting from a factory with subfactories, overriding. ... ok
314 test_sub_factory_and_sequence (tests.test_using.SubFactoryTestCase) ... ok
315 test_sub_factory_deep_overrides (tests.test_using.SubFactoryTestCase) ... ok
316 test_sub_factory_overriding (tests.test_using.SubFactoryTestCase) ... ok
317 test_sub_factory_with_lazy_fields (tests.test_using.SubFactoryTestCase) ... ok
318 test_sub_factory_with_lazy_fields_access_factory_parent (tests.test_using.SubFactoryTestCase) ... ok
319 test_deep_traits (tests.test_using.TraitTestCase) ... ok
320 test_post_generation_traits (tests.test_using.TraitTestCase) ... ok
321 test_prevent_cyclic_traits (tests.test_using.TraitTestCase) ... ok
322 test_traits (tests.test_using.TraitTestCase) ... ok
323 test_traits_and_postgeneration (tests.test_using.TraitTestCase)
324 A trait parameter should be resolved before post_generation hooks. ... ok
325 test_traits_chaining (tests.test_using.TraitTestCase)
326 Use a trait to enable other traits. ... ok
327 test_traits_inheritance (tests.test_using.TraitTestCase)
328 A trait can be set in an inherited class. ... ok
329 test_traits_override (tests.test_using.TraitTestCase)
330 Override a trait in a subclass. ... ok
331 test_traits_override_params (tests.test_using.TraitTestCase)
332 Override a Params value in a trait ... ok
333 test_abstract (tests.test_using.UsingFactoryTestCase) ... ok
334 test_attribute (tests.test_using.UsingFactoryTestCase) ... ok
335 test_build_with_parameters (tests.test_using.UsingFactoryTestCase) ... ok
336 test_class_method_accessible (tests.test_using.UsingFactoryTestCase) ... ok
337 test_create (tests.test_using.UsingFactoryTestCase) ... ok
338 test_create_batch (tests.test_using.UsingFactoryTestCase) ... ok
339 test_custom_create (tests.test_using.UsingFactoryTestCase) ... ok
340 test_dual_inheritance (tests.test_using.UsingFactoryTestCase) ... ok
341 test_exclude (tests.test_using.UsingFactoryTestCase) ... ok
342 test_exclude_and_inline_args (tests.test_using.UsingFactoryTestCase) ... ok
343 test_generate_batch_build (tests.test_using.UsingFactoryTestCase) ... ok
344 test_generate_batch_create (tests.test_using.UsingFactoryTestCase) ... ok
345 test_generate_batch_stub (tests.test_using.UsingFactoryTestCase) ... ok
346 test_generate_build (tests.test_using.UsingFactoryTestCase) ... ok
347 test_generate_create (tests.test_using.UsingFactoryTestCase) ... ok
348 test_generate_stub (tests.test_using.UsingFactoryTestCase) ... ok
349 test_inheritance (tests.test_using.UsingFactoryTestCase) ... ok
350 test_inheritance_and_sequences (tests.test_using.UsingFactoryTestCase)
351 Sequence counters should be kept within an inheritance chain. ... ok
352 test_inheritance_sequence_inheriting_objects (tests.test_using.UsingFactoryTestCase)
353 Sequence counters are kept with inheritance, incl. misc objects. ... ok
354 test_inheritance_sequence_unrelated_objects (tests.test_using.UsingFactoryTestCase)
355 Sequence counters are kept with inheritance, unrelated objects. ... ok
356 test_inheritance_with_inherited_class (tests.test_using.UsingFactoryTestCase) ... ok
357 test_inheriting_model_class (tests.test_using.UsingFactoryTestCase) ... ok
358 test_inline_args (tests.test_using.UsingFactoryTestCase) ... ok
359 test_lazy_attribute (tests.test_using.UsingFactoryTestCase) ... ok
360 test_lazy_attribute_decorator (tests.test_using.UsingFactoryTestCase) ... ok
361 test_lazy_attribute_sequence (tests.test_using.UsingFactoryTestCase) ... ok
362 test_lazy_attribute_sequence_decorator (tests.test_using.UsingFactoryTestCase) ... ok
363 test_non_django_create (tests.test_using.UsingFactoryTestCase) ... ok
364 test_override_inherited (tests.test_using.UsingFactoryTestCase)
365 Overriding inherited declarations ... ok
366 test_override_inherited_deep (tests.test_using.UsingFactoryTestCase)
367 Overriding inherited declarations ... ok
368 test_self_attribute (tests.test_using.UsingFactoryTestCase) ... ok
369 test_self_attribute_parent (tests.test_using.UsingFactoryTestCase) ... ok
370 test_sequence (tests.test_using.UsingFactoryTestCase) ... ok
371 test_sequence_batch (tests.test_using.UsingFactoryTestCase) ... ok
372 test_sequence_custom_begin (tests.test_using.UsingFactoryTestCase) ... ok
373 test_sequence_decorator (tests.test_using.UsingFactoryTestCase) ... ok
374 test_sequence_override (tests.test_using.UsingFactoryTestCase) ... ok
375 test_simple_generate_batch_build (tests.test_using.UsingFactoryTestCase) ... ok
376 test_simple_generate_batch_create (tests.test_using.UsingFactoryTestCase) ... ok
377 test_simple_generate_build (tests.test_using.UsingFactoryTestCase) ... ok
378 test_simple_generate_create (tests.test_using.UsingFactoryTestCase) ... ok
379 test_static_method_accessible (tests.test_using.UsingFactoryTestCase) ... ok
380 test_stub_batch (tests.test_using.UsingFactoryTestCase) ... ok
381 test_datetime (tests.test_utils.ImportObjectTestCase) ... ok
382 test_invalid_module (tests.test_utils.ImportObjectTestCase) ... ok
383 test_unknown_attribute (tests.test_utils.ImportObjectTestCase) ... ok
384 test_bytes_args (tests.test_utils.LogPPrintTestCase) ... ok
385 test_bytes_kwargs (tests.test_utils.LogPPrintTestCase) ... ok
386 test_nothing (tests.test_utils.LogPPrintTestCase) ... ok
387 test_only_args (tests.test_utils.LogPPrintTestCase) ... ok
388 test_only_kwargs (tests.test_utils.LogPPrintTestCase) ... ok
389 test_text_args (tests.test_utils.LogPPrintTestCase) ... ok
390 test_text_kwargs (tests.test_utils.LogPPrintTestCase) ... ok
391 test_infinite (tests.test_utils.ResetableIteratorTestCase) ... ok
392 test_no_reset (tests.test_utils.ResetableIteratorTestCase) ... ok
393 test_no_reset_new_iterator (tests.test_utils.ResetableIteratorTestCase) ... ok
394 test_reset_after_end (tests.test_utils.ResetableIteratorTestCase) ... ok
395 test_reset_at_begin (tests.test_utils.ResetableIteratorTestCase) ... ok
396 test_reset_at_end (tests.test_utils.ResetableIteratorTestCase) ... ok
397 test_reset_shorter (tests.test_utils.ResetableIteratorTestCase) ... ok
398 test_reset_simple (tests.test_utils.ResetableIteratorTestCase) ... ok
399 test_reset_twice (tests.test_utils.ResetableIteratorTestCase) ... ok
400 test_version (tests.test_version.VersionTestCase) ... ok
402 ----------------------------------------------------------------------