Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2020-07-08 14:37:58,156 498 INFO test odoo.modules.loading: loading 136 modules...
2020-07-08 14:37:58,719 498 INFO test odoo.modules.registry: module analytic_structure: creating or updating database tables
2020-07-08 14:37:58,968 498 INFO test odoo.modules.loading: loading analytic_structure/security/security.xml
2020-07-08 14:37:59,827 498 INFO test odoo.modules.loading: loading analytic_structure/security/ir.model.access.csv
2020-07-08 14:37:59,962 498 INFO test odoo.modules.loading: loading analytic_structure/security/record_rules.xml
2020-07-08 14:37:59,985 498 INFO test odoo.modules.loading: loading analytic_structure/views/analytic_views.xml
2020-07-08 14:38:00,173 498 INFO test odoo.modules.loading: loading analytic_structure/views/analytic_menus.xml
2020-07-08 14:38:00,288 498 INFO test odoo.modules.loading: Module analytic_structure: loading demo
2020-07-08 14:38:00,774 498 INFO test odoo.modules.registry: module base_no_copy: creating or updating database tables
2020-07-08 14:38:01,899 498 INFO test odoo.modules.loading: Module base_no_copy: loading demo
2020-07-08 14:38:02,291 498 INFO test odoo.modules.registry: module export_profiles: creating or updating database tables
2020-07-08 14:38:02,316 498 INFO test odoo.modules.loading: loading export_profiles/views/ir_exports.xml
2020-07-08 14:38:02,435 498 INFO test odoo.modules.loading: Module export_profiles: loading demo
2020-07-08 14:38:02,809 498 INFO test odoo.modules.registry: module l10n_eu_nace: creating or updating database tables
2020-07-08 14:38:02,908 498 INFO test odoo.modules.loading: loading l10n_eu_nace/data/res.partner.category.csv
2020-07-08 14:38:13,395 498 INFO test odoo.modules.loading: Module l10n_eu_nace: loading demo
2020-07-08 14:38:14,647 498 INFO test odoo.modules.registry: module x_data_loader: creating or updating database tables
2020-07-08 14:38:14,728 498 INFO test odoo.modules.loading: loading x_data_loader/security/ir.model.access.csv
2020-07-08 14:38:14,768 498 INFO test odoo.modules.loading: loading x_data_loader/views/xbus_event_type.xml
2020-07-08 14:38:14,818 498 INFO test odoo.modules.loading: loading x_data_loader/menu.xml
2020-07-08 14:38:14,857 498 INFO test odoo.modules.loading: Module x_data_loader: loading demo
2020-07-08 14:38:17,089 498 INFO test odoo.modules.registry: module partner_analytics: creating or updating database tables
2020-07-08 14:38:17,361 498 INFO test odoo.modules.loading: loading partner_analytics/views/res_partner.xml
2020-07-08 14:38:17,532 498 INFO test odoo.modules.loading: Module partner_analytics: loading demo
2020-07-08 14:38:17,916 498 INFO test odoo.modules.registry: module partner_naf: creating or updating database tables
2020-07-08 14:38:18,203 498 INFO test odoo.modules.loading: loading partner_naf/data/res.partner.category.csv
2020-07-08 14:38:26,425 498 INFO test odoo.modules.loading: loading partner_naf/views/partner_view.xml
2020-07-08 14:38:26,553 498 INFO test odoo.modules.loading: Module partner_naf: loading demo
2020-07-08 14:38:27,095 498 INFO test odoo.modules.registry: module partner_no_copy: creating or updating database tables
2020-07-08 14:38:27,388 498 INFO test odoo.modules.loading: Module partner_no_copy: loading demo
2020-07-08 14:38:27,535 498 INFO test odoo.modules.module: odoo.addons.partner_no_copy.tests.test_partner_no_copy running tests.
2020-07-08 14:38:27,536 498 INFO test odoo.addons.partner_no_copy.tests.test_partner_no_copy: Starting TestPartnerNoCopy.test_0020_partner_copy ...
2020-07-08 14:38:27,739 498 INFO test odoo.modules.module: Ran 1 test in 0.203s
2020-07-08 14:38:28,961 498 INFO test odoo.addons.prometheus.prometheus: Prometheus instrumentation enabled.
2020-07-08 14:38:32,150 498 INFO test odoo.modules.registry: module web_form_confirm: creating or updating database tables
2020-07-08 14:38:32,249 498 INFO test odoo.modules.loading: loading web_form_confirm/views/assets.xml
2020-07-08 14:38:32,421 498 INFO test odoo.modules.loading: Module web_form_confirm: loading demo
2020-07-08 14:38:33,133 498 INFO test odoo.modules.registry: module xbus_emitter: creating or updating database tables
2020-07-08 14:38:33,255 498 INFO test odoo.modules.loading: loading xbus_emitter/security/ir.model.access.csv
2020-07-08 14:38:33,374 498 INFO test odoo.modules.loading: loading xbus_emitter/data/xbus.emitter.csv
2020-07-08 14:38:33,402 498 INFO test odoo.modules.loading: loading xbus_emitter/menu.xml
2020-07-08 14:38:33,427 498 INFO test odoo.modules.loading: loading xbus_emitter/views/assets.xml
2020-07-08 14:38:33,619 498 INFO test odoo.modules.loading: loading xbus_emitter/views/xbus_emitter.xml
2020-07-08 14:38:33,731 498 INFO test odoo.modules.loading: loading xbus_emitter/views/xbus_emitter_job.xml
2020-07-08 14:38:33,867 498 INFO test odoo.modules.loading: Module xbus_emitter: loading demo
2020-07-08 14:38:36,641 498 INFO test odoo.modules.registry: module board_alerts: creating or updating database tables
2020-07-08 14:38:36,814 498 INFO test odoo.modules.loading: loading board_alerts/data/alert_board.xml
2020-07-08 14:38:36,837 498 INFO test odoo.modules.loading: loading board_alerts/data/board_alerts_email_template.xml
2020-07-08 14:38:36,858 498 INFO test odoo.modules.loading: loading board_alerts/data/board_alerts_cron_task.xml
2020-07-08 14:38:36,869 498 INFO test odoo.modules.loading: loading board_alerts/views/board_alerts_assets.xml
2020-07-08 14:38:37,088 498 INFO test odoo.modules.loading: loading board_alerts/wizard/board_alerts_dlg.xml
2020-07-08 14:38:37,170 498 INFO test odoo.modules.loading: Module board_alerts: loading demo
2020-07-08 14:38:38,770 498 INFO test odoo.modules.registry: module document_attachment: creating or updating database tables
2020-07-08 14:38:39,229 498 INFO test odoo.modules.loading: loading document_attachment/security/ir.model.access.csv
2020-07-08 14:38:39,383 498 INFO test odoo.modules.loading: loading document_attachment/views/document_attachment.xml
2020-07-08 14:38:39,501 498 INFO test odoo.modules.loading: loading document_attachment/views/document_attachment_type.xml
2020-07-08 14:38:39,627 498 INFO test odoo.modules.loading: loading document_attachment/views/document_attachment_type_list.xml
2020-07-08 14:38:39,706 498 INFO test odoo.modules.loading: loading document_attachment/views/ir_actions_report.xml
2020-07-08 14:38:39,844 498 INFO test odoo.modules.loading: loading document_attachment/views/mail_template.xml
2020-07-08 14:38:39,948 498 INFO test odoo.modules.loading: Module document_attachment: loading demo
2020-07-08 14:38:45,331 498 INFO test odoo.modules.registry: module product_analytic_structure: creating or updating database tables
2020-07-08 14:38:45,573 498 INFO test odoo.modules.loading: loading product_analytic_structure/views/product_template.xml
2020-07-08 14:38:45,776 498 INFO test odoo.modules.loading: loading product_analytic_structure/views/product_product.xml
2020-07-08 14:38:45,886 498 INFO test odoo.modules.loading: Module product_analytic_structure: loading demo
2020-07-08 14:38:45,887 498 INFO test odoo.modules.loading: loading product_analytic_structure/demo/analytic.dimension.csv
2020-07-08 14:38:45,912 498 INFO test odoo.modules.loading: loading product_analytic_structure/demo/analytic.structure.csv
2020-07-08 14:38:45,938 498 INFO test odoo.modules.loading: loading product_analytic_structure/demo/analytic.code.csv
2020-07-08 14:38:45,954 498 INFO test odoo.modules.loading: loading product_analytic_structure/demo/product.template.csv
2020-07-08 14:38:47,042 498 INFO test odoo.modules.registry: module product_no_copy: creating or updating database tables
2020-07-08 14:38:47,221 498 INFO test odoo.modules.loading: Module product_no_copy: loading demo
2020-07-08 14:38:47,339 498 INFO test odoo.modules.module: odoo.addons.product_no_copy.tests.test_product_no_copy running tests.
2020-07-08 14:38:47,340 498 INFO test odoo.addons.product_no_copy.tests.test_product_no_copy: Starting TestProductNoCopy.test_0020_product_template_copy ...
2020-07-08 14:38:47,964 498 INFO test odoo.modules.module: Ran 1 test in 0.625s
2020-07-08 14:38:49,777 498 INFO test odoo.modules.registry: module s3_attachment_storage: creating or updating database tables
2020-07-08 14:38:49,965 498 INFO test odoo.modules.loading: loading s3_attachment_storage/views/res_config_settings.xml
2020-07-08 14:38:50,025 498 INFO test odoo.modules.loading: loading s3_attachment_storage/menu.xml
2020-07-08 14:38:50,066 498 INFO test odoo.modules.loading: Module s3_attachment_storage: loading demo
2020-07-08 14:38:54,386 498 INFO test odoo.modules.registry: module hr_employee_category: creating or updating database tables
2020-07-08 14:38:54,579 498 INFO test odoo.modules.loading: loading hr_employee_category/views/hr_employee_views.xml
2020-07-08 14:38:54,725 498 INFO test odoo.modules.loading: Module hr_employee_category: loading demo
2020-07-08 14:38:55,609 498 INFO test odoo.modules.registry: module hr_employee_documents: creating or updating database tables
2020-07-08 14:38:55,810 498 INFO test odoo.modules.loading: loading hr_employee_documents/views/hr_employee_views.xml
2020-07-08 14:38:55,992 498 INFO test odoo.modules.loading: Module hr_employee_documents: loading demo
2020-07-08 14:38:56,991 498 INFO test odoo.modules.registry: module hr_employee_home_address: creating or updating database tables
2020-07-08 14:38:57,163 498 INFO test odoo.modules.loading: Module hr_employee_home_address: loading demo
2020-07-08 14:38:58,251 498 INFO test odoo.modules.registry: module hr_employee_managers: creating or updating database tables
2020-07-08 14:38:58,472 498 INFO test odoo.modules.loading: loading hr_employee_managers/views/hr_employee_views.xml
2020-07-08 14:38:58,664 498 INFO test odoo.modules.loading: Module hr_employee_managers: loading demo
2020-07-08 14:38:59,750 498 INFO test odoo.modules.registry: module hr_employee_matricules: creating or updating database tables
2020-07-08 14:39:00,009 498 INFO test odoo.modules.loading: loading hr_employee_matricules/security/ir.model.access.csv
2020-07-08 14:39:00,070 498 INFO test odoo.modules.loading: loading hr_employee_matricules/data/ir.sequence.xml
2020-07-08 14:39:00,084 498 INFO test odoo.modules.loading: loading hr_employee_matricules/views/hr_matricule_views.xml
2020-07-08 14:39:00,219 498 INFO test odoo.modules.loading: loading hr_employee_matricules/views/hr_employee_views.xml
2020-07-08 14:39:00,390 498 INFO test odoo.modules.loading: Module hr_employee_matricules: loading demo
2020-07-08 14:39:01,434 498 INFO test odoo.modules.registry: module hr_employee_no_copy: creating or updating database tables
2020-07-08 14:39:01,624 498 INFO test odoo.modules.loading: Module hr_employee_no_copy: loading demo
2020-07-08 14:39:02,564 498 INFO test odoo.modules.registry: module hr_employee_personal_information: creating or updating database tables
2020-07-08 14:39:02,904 498 INFO test odoo.modules.loading: loading hr_employee_personal_information/security/ir.model.access.csv
2020-07-08 14:39:02,952 498 INFO test odoo.modules.loading: loading hr_employee_personal_information/views/hr_employee_child_views.xml
2020-07-08 14:39:03,028 498 INFO test odoo.modules.loading: loading hr_employee_personal_information/views/hr_employee_views.xml
2020-07-08 14:39:03,211 498 INFO test odoo.modules.loading: Module hr_employee_personal_information: loading demo
2020-07-08 14:39:04,149 498 INFO test odoo.modules.registry: module hr_employee_public_information: creating or updating database tables
2020-07-08 14:39:04,188 498 INFO test odoo.modules.loading: loading hr_employee_public_information/views/hr_employee_views.xml
2020-07-08 14:39:04,369 498 INFO test odoo.modules.loading: Module hr_employee_public_information: loading demo
2020-07-08 14:39:05,385 498 INFO test odoo.modules.registry: module hr_employee_training: creating or updating database tables
2020-07-08 14:39:05,701 498 INFO test odoo.modules.loading: loading hr_employee_training/security/ir.model.access.csv
2020-07-08 14:39:05,750 498 INFO test odoo.modules.loading: loading hr_employee_training/views/hr_employee_training_views.xml
2020-07-08 14:39:05,846 498 INFO test odoo.modules.loading: loading hr_employee_training/views/hr_employee_views.xml
2020-07-08 14:39:06,100 498 INFO test odoo.modules.loading: Module hr_employee_training: loading demo
2020-07-08 14:39:08,048 498 INFO test odoo.modules.registry: module hr_operational_department: creating or updating database tables
2020-07-08 14:39:08,387 498 INFO test odoo.modules.loading: loading hr_operational_department/security/ir.model.access.csv
2020-07-08 14:39:08,487 498 INFO test odoo.modules.loading: loading hr_operational_department/security/record_rules.xml
2020-07-08 14:39:08,528 498 INFO test odoo.modules.loading: loading hr_operational_department/views/hr_employee.xml
2020-07-08 14:39:08,814 498 INFO test odoo.modules.loading: loading hr_operational_department/views/hr_operational_department.xml
2020-07-08 14:39:08,944 498 INFO test odoo.modules.loading: Module hr_operational_department: loading demo
2020-07-08 14:39:10,960 498 INFO test odoo.modules.registry: module account: creating or updating database tables
2020-07-08 14:39:15,369 498 INFO test odoo.modules.loading: loading account/security/account_security.xml
2020-07-08 14:39:18,736 498 INFO test odoo.modules.loading: loading account/security/ir.model.access.csv
2020-07-08 14:39:19,750 498 INFO test odoo.modules.loading: loading account/data/data_account_type.xml
2020-07-08 14:39:19,809 498 INFO test odoo.modules.loading: loading account/data/account_data.xml
2020-07-08 14:39:19,914 498 INFO test odoo.modules.loading: loading account/data/digest_data.xml
2020-07-08 14:39:19,924 498 INFO test odoo.modules.loading: loading account/views/account_menuitem.xml
2020-07-08 14:39:20,255 498 INFO test odoo.modules.loading: loading account/views/account_payment_view.xml
2020-07-08 14:39:20,795 498 INFO test odoo.modules.loading: loading account/wizard/account_accrual_accounting_view.xml
2020-07-08 14:39:20,840 498 INFO test odoo.modules.loading: loading account/wizard/account_unreconcile_view.xml
2020-07-08 14:39:20,890 498 INFO test odoo.modules.loading: loading account/wizard/account_move_reversal_view.xml
2020-07-08 14:39:20,943 498 INFO test odoo.modules.loading: loading account/views/account_move_views.xml
2020-07-08 14:39:23,012 498 INFO test odoo.modules.loading: loading account/wizard/setup_wizards_view.xml
2020-07-08 14:39:23,152 498 INFO test odoo.modules.loading: loading account/wizard/pos_box.xml
2020-07-08 14:39:23,211 498 INFO test odoo.modules.loading: loading account/views/partner_view.xml
2020-07-08 14:39:24,182 498 INFO test odoo.modules.loading: loading account/views/account_view.xml
2020-07-08 14:39:24,820 498 INFO test odoo.models.unlink: User #1 deleted ir.actions.act_window.view records with IDs: [54, 55, 56]
2020-07-08 14:39:25,021 498 INFO test odoo.models.unlink: User #1 deleted ir.actions.act_window.view records with IDs: [57, 58, 59]
2020-07-08 14:39:27,541 498 INFO test odoo.modules.loading: loading account/views/report_statement.xml
2020-07-08 14:39:27,570 498 INFO test odoo.modules.loading: loading account/views/account_report.xml
2020-07-08 14:39:27,657 498 INFO test odoo.modules.loading: loading account/data/mail_template_data.xml
2020-07-08 14:39:27,667 498 INFO test odoo.modules.loading: loading account/wizard/account_validate_move_view.xml
2020-07-08 14:39:27,709 498 INFO test odoo.modules.loading: loading account/views/account_end_fy.xml
2020-07-08 14:39:27,714 498 INFO test odoo.modules.loading: loading account/views/product_view.xml
2020-07-08 14:39:27,948 498 INFO test odoo.modules.loading: loading account/views/account_analytic_view.xml
2020-07-08 14:39:28,215 498 INFO test odoo.modules.loading: loading account/views/account_tip_data.xml
2020-07-08 14:39:28,219 498 INFO test odoo.modules.loading: loading account/views/account.xml
2020-07-08 14:39:28,942 498 INFO test odoo.modules.loading: loading account/views/report_invoice.xml
2020-07-08 14:39:29,091 498 INFO test odoo.modules.loading: loading account/report/account_invoice_report_view.xml
2020-07-08 14:39:29,344 498 INFO test odoo.modules.loading: loading account/views/account_cash_rounding_view.xml
2020-07-08 14:39:29,491 498 INFO test odoo.modules.loading: loading account/wizard/account_report_common_view.xml
2020-07-08 14:39:29,558 498 INFO test odoo.modules.loading: loading account/views/report_journal.xml
2020-07-08 14:39:29,592 498 INFO test odoo.modules.loading: loading account/views/tax_adjustments.xml
2020-07-08 14:39:29,636 498 INFO test odoo.modules.loading: loading account/wizard/wizard_tax_adjustments_view.xml
2020-07-08 14:39:29,695 498 INFO test odoo.modules.loading: loading account/views/res_config_settings_views.xml
2020-07-08 14:39:30,148 498 INFO test odoo.modules.loading: loading account/views/account_journal_dashboard_view.xml
2020-07-08 14:39:30,291 498 INFO test odoo.modules.loading: loading account/views/account_portal_templates.xml
2020-07-08 14:39:30,576 498 INFO test odoo.modules.loading: loading account/views/report_payment_receipt_templates.xml
2020-07-08 14:39:30,650 498 INFO test odoo.modules.loading: loading account/data/payment_receipt_data.xml
2020-07-08 14:39:30,662 498 INFO test odoo.modules.loading: loading account/views/account_onboarding_templates.xml
2020-07-08 14:39:31,020 498 INFO test odoo.modules.loading: loading account/data/service_cron.xml
2020-07-08 14:39:31,091 498 INFO test odoo.modules.loading: loading account/views/account_fiscal_year_view.xml
2020-07-08 14:39:31,227 498 INFO test odoo.modules.loading: loading account/views/account_incoterms_view.xml
2020-07-08 14:39:31,393 498 INFO test odoo.modules.loading: loading account/data/account_incoterms_data.xml
2020-07-08 14:39:31,502 498 INFO test odoo.modules.loading: loading account/views/digest_views.xml
2020-07-08 14:39:31,666 498 INFO test odoo.modules.loading: loading account/wizard/account_invoice_send_views.xml
2020-07-08 14:39:31,756 498 INFO test odoo.modules.loading: loading account/views/account_tax_report_views.xml
2020-07-08 14:39:31,906 498 INFO test odoo.modules.loading: loading account/views/report_statement.xml
2020-07-08 14:39:31,927 498 INFO test odoo.modules.loading: loading account/report/account_hash_integrity_templates.xml
2020-07-08 14:39:31,954 498 INFO test odoo.modules.loading: Module account: loading demo
2020-07-08 14:39:31,955 498 INFO test odoo.modules.loading: loading account/demo/account_demo.xml
2020-07-08 14:39:32,123 498 INFO test odoo.modules.module: odoo.addons.account.tests.test_fiscal_position running tests.
2020-07-08 14:39:32,124 498 INFO test odoo.addons.account.tests.test_fiscal_position: Starting TestFiscalPosition.test_10_fp_country ...
2020-07-08 14:39:33,045 498 INFO test odoo.addons.account.tests.test_fiscal_position: Starting TestFiscalPosition.test_20_fp_one_tax_2m ...
2020-07-08 14:39:33,403 498 INFO test odoo.modules.module: Ran 2 tests in 1.279s
2020-07-08 14:39:33,419 498 INFO test odoo.modules.module: odoo.addons.account.tests.test_templates_consistency running tests.
2020-07-08 14:39:33,419 498 INFO test odoo.addons.account.tests.test_templates_consistency: Starting AccountingTestTemplConsistency.test_account_account_fields ...
2020-07-08 14:39:33,442 498 INFO test odoo.addons.account.tests.test_templates_consistency: Starting AccountingTestTemplConsistency.test_account_tax_fields ...
2020-07-08 14:39:33,483 498 INFO test odoo.addons.account.tests.test_templates_consistency: Starting AccountingTestTemplConsistency.test_fiscal_position_fields ...
2020-07-08 14:39:33,533 498 INFO test odoo.addons.account.tests.test_templates_consistency: Starting AccountingTestTemplConsistency.test_reconcile_model_fields ...
2020-07-08 14:39:33,560 498 INFO test odoo.modules.module: Ran 4 tests in 0.140s
2020-07-08 14:39:35,855 498 INFO test odoo.modules.registry: module hr_employee_contracts: creating or updating database tables
2020-07-08 14:39:36,322 498 INFO test odoo.modules.loading: loading hr_employee_contracts/security/ir.model.access.csv
2020-07-08 14:39:36,433 498 INFO test odoo.modules.loading: loading hr_employee_contracts/views/hr_contract_views.xml
2020-07-08 14:39:36,813 498 INFO test odoo.modules.loading: loading hr_employee_contracts/views/hr_employee_views.xml
2020-07-08 14:39:37,085 498 INFO test odoo.modules.loading: Module hr_employee_contracts: loading demo
2020-07-08 14:39:38,214 498 INFO test odoo.modules.registry: module hr_employee_demo: creating or updating database tables
2020-07-08 14:39:38,256 498 INFO test odoo.modules.loading: Module hr_employee_demo: loading demo
2020-07-08 14:39:38,257 498 INFO test odoo.modules.loading: loading hr_employee_demo/demo/hr.employee.category.csv
2020-07-08 14:39:38,277 498 INFO test odoo.modules.loading: loading hr_employee_demo/demo/hr.employee.csv
2020-07-08 14:39:39,833 498 INFO test odoo.modules.registry: module hr_holidays_base: creating or updating database tables
2020-07-08 14:39:40,054 498 INFO test odoo.modules.loading: loading hr_holidays_base/views/hr_leave_views.xml
2020-07-08 14:39:40,144 498 INFO test odoo.modules.loading: loading hr_holidays_base/views/hr_leave_type_views.xml
2020-07-08 14:39:40,297 498 INFO test odoo.modules.loading: Module hr_holidays_base: loading demo
2020-07-08 14:39:42,787 498 INFO test odoo.modules.registry: module account_analytic_structure: creating or updating database tables
2020-07-08 14:39:43,213 498 INFO test odoo.modules.loading: loading account_analytic_structure/views/account_move.xml
2020-07-08 14:39:43,500 498 INFO test odoo.modules.loading: loading account_analytic_structure/views/account_move_line.xml
2020-07-08 14:39:43,682 498 INFO test odoo.modules.loading: loading account_analytic_structure/views/account_account.xml
2020-07-08 14:39:43,824 498 INFO test odoo.modules.loading: Module account_analytic_structure: loading demo
2020-07-08 14:39:45,323 498 INFO test odoo.modules.registry: module account_bank_statement_import: creating or updating database tables
2020-07-08 14:39:45,692 498 INFO test odoo.modules.loading: loading account_bank_statement_import/account_bank_statement_import_view.xml
2020-07-08 14:39:45,854 498 INFO test odoo.modules.loading: loading account_bank_statement_import/account_import_tip_data.xml
2020-07-08 14:39:45,857 498 INFO test odoo.modules.loading: loading account_bank_statement_import/wizard/journal_creation.xml
2020-07-08 14:39:45,900 498 INFO test odoo.modules.loading: loading account_bank_statement_import/views/account_bank_statement_import_templates.xml
2020-07-08 14:39:46,279 498 INFO test odoo.modules.loading: Module account_bank_statement_import: loading demo
2020-07-08 14:39:46,281 498 INFO test odoo.modules.loading: loading account_bank_statement_import/demo/partner_bank.xml
2020-07-08 14:39:47,972 498 INFO test odoo.modules.registry: module account_facturx: creating or updating database tables
2020-07-08 14:39:48,188 498 INFO test odoo.modules.loading: loading account_facturx/data/facturx_templates.xml
2020-07-08 14:39:48,286 498 INFO test odoo.modules.loading: Module account_facturx: loading demo
2020-07-08 14:39:49,343 498 INFO test odoo.modules.registry: module account_payment_menus: creating or updating database tables
2020-07-08 14:39:49,373 498 INFO test odoo.modules.loading: loading account_payment_menus/menus.xml
2020-07-08 14:39:49,445 498 INFO test odoo.modules.loading: Module account_payment_menus: loading demo
2020-07-08 14:39:50,856 498 INFO test odoo.modules.registry: module account_payment_rejects: creating or updating database tables
2020-07-08 14:39:50,988 498 INFO test odoo.modules.loading: loading account_payment_rejects/views/account_payment.xml
2020-07-08 14:39:51,100 498 INFO test odoo.modules.loading: loading account_payment_rejects/wizards/payment_reversal.xml
2020-07-08 14:39:51,136 498 INFO test odoo.modules.loading: Module account_payment_rejects: loading demo
2020-07-08 14:39:52,271 498 INFO test odoo.modules.registry: module account_payment_split: creating or updating database tables
2020-07-08 14:39:52,561 498 INFO test odoo.modules.loading: Module account_payment_split: loading demo
2020-07-08 14:39:54,177 498 INFO test odoo.modules.registry: module account_period: creating or updating database tables
2020-07-08 14:39:54,713 498 INFO test odoo.modules.loading: loading account_period/security/ir.model.access.csv
2020-07-08 14:39:54,788 498 INFO test odoo.modules.loading: loading account_period/security/record_rules.xml
2020-07-08 14:39:54,815 498 INFO test odoo.modules.loading: loading account_period/wizards/account_period_close_view.xml
2020-07-08 14:39:54,866 498 INFO test odoo.modules.loading: loading account_period/views/account_move.xml
2020-07-08 14:39:55,129 498 INFO test odoo.modules.loading: loading account_period/views/account_period.xml
2020-07-08 14:39:55,267 498 INFO test odoo.modules.loading: loading account_period/views/account_fiscalyear.xml
2020-07-08 14:39:55,391 498 INFO test odoo.modules.loading: Module account_period: loading demo
2020-07-08 14:39:56,976 498 INFO test odoo.modules.registry: module account_transfer: creating or updating database tables
2020-07-08 14:39:57,301 498 INFO test odoo.modules.loading: loading account_transfer/dialogs/account_transfer_dlg.xml
2020-07-08 14:39:57,361 498 INFO test odoo.modules.loading: loading account_transfer/views/account_move_line.xml
2020-07-08 14:39:57,473 498 INFO test odoo.modules.loading: loading account_transfer/views/res_config_settings.xml
2020-07-08 14:39:57,954 498 INFO test odoo.modules.loading: Module account_transfer: loading demo
2020-07-08 14:39:59,844 498 INFO test odoo.modules.registry: module hr_expense: creating or updating database tables
2020-07-08 14:40:01,074 498 INFO test odoo.modules.loading: loading hr_expense/security/hr_expense_security.xml
2020-07-08 14:40:02,323 498 INFO test odoo.modules.loading: loading hr_expense/security/ir.model.access.csv
2020-07-08 14:40:02,571 498 INFO test odoo.modules.loading: loading hr_expense/data/mail_data.xml
2020-07-08 14:40:02,603 498 INFO test odoo.modules.loading: loading hr_expense/data/hr_expense_sequence.xml
2020-07-08 14:40:02,611 498 INFO test odoo.modules.loading: loading hr_expense/wizard/hr_expense_refuse_reason_views.xml
2020-07-08 14:40:02,662 498 INFO test odoo.modules.loading: loading hr_expense/wizard/hr_expense_sheet_register_payment.xml
2020-07-08 14:40:02,710 498 INFO test odoo.modules.loading: loading hr_expense/views/hr_expense_views.xml
2020-07-08 14:40:04,930 498 INFO test odoo.modules.loading: loading hr_expense/views/mail_activity_views.xml
2020-07-08 14:40:04,966 498 INFO test odoo.modules.loading: loading hr_expense/security/ir_rule.xml
2020-07-08 14:40:04,987 498 INFO test odoo.modules.loading: loading hr_expense/report/hr_expense_report.xml
2020-07-08 14:40:05,025 498 INFO test odoo.modules.loading: loading hr_expense/views/hr_department_views.xml
2020-07-08 14:40:05,123 498 INFO test odoo.modules.loading: loading hr_expense/views/assets.xml
2020-07-08 14:40:05,586 498 INFO test odoo.modules.loading: loading hr_expense/views/res_config_settings_views.xml
2020-07-08 14:40:06,067 498 INFO test odoo.modules.loading: loading hr_expense/views/account_journal_dashboard.xml
2020-07-08 14:40:06,189 498 INFO test odoo.modules.loading: Module hr_expense: loading demo
2020-07-08 14:40:06,190 498 INFO test odoo.modules.loading: loading hr_expense/data/hr_expense_demo.xml
2020-07-08 14:40:06,716 498 INFO test odoo.modules.module: odoo.addons.hr_expense.tests.test_expenses running tests.
2020-07-08 14:40:08,580 498 INFO test odoo.addons.hr_expense.tests.test_expenses: Starting TestAccountEntry.test_account_entry ...
2020-07-08 14:40:09,184 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:09,186 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 63 and Message-Id '<554302620316660.1594219209.076704740524292-openerp-message-notify@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:09,255 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [63]
2020-07-08 14:40:09,256 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:09,505 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:09,509 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:09,512 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 64 and Message-Id '<305550921334306.1594219209.308668613433838-openerp-7-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:09,576 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [64]
2020-07-08 14:40:09,576 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:09,756 498 INFO test odoo.models.unlink: User #1 deleted mail.activity records with IDs: [54]
2020-07-08 14:40:10,072 498 INFO test odoo.addons.hr_expense.tests.test_expenses: Starting TestAccountEntry.test_account_entry_multi_currency ...
2020-07-08 14:40:10,390 498 INFO test odoo.models.unlink: User #1 deleted ir.model.data records with IDs: [4977, 4893, 4967, 4896, 4917, 4894, 4865, 4867, 4897, 4898, 4909, 4902, 4901, 4872, 4900, 4911, 4906, 4958, 4908, 4851, 4899, 4907, 4910, 4904, 4903, 4905, 4849, 4915, 4850, 4891, 4852, 4853, 4885, 4916, 5013, 4918, 4854, 4919, 4855, 4920, 4959, 4921, 4925, 4922, 4924, 4974, 4927, 4926, 4993, 4928, 4960, 4929, 4961, 4931, 5016, 4932, 4870, 4890, 4875, 4933, 4856, 4858, 4857, 4937, 4866, 4936, 4935, 4934, 5001, 4938, 4939, 4871, 4941, 4943, 4912, 4914, 4970, 4878, 4942, 4913, 4940, 4944, 4945, 4991, 4947, 4946, 4873, 4859, 4948, 4957, 4955, 4951, 4950, 4964, 4956, 4949, 4954, 4886, 4953, 4952, 4879, 4880, 4963, 4965, 4969, 4968, 4860, 4966, 4881, 5012, 4862, 5008, 5010, 4882, 5011, 4863, 5007, 5009, 5006, 4930, 4874, 4998, 4876, 5005, 5004, 4999, 4995, 4997, 4990, 4864, 4883, 5003, 5014, 4996, 4994, 4989, 4992, 5000, 4923, 4987, 4988, 4983, 4985, 4979, 4980, 4982, 4877, 4981, 4986, 4984, 4978, 4868, 4889, 4846, 4847, 4892, 4976, 4848, 4869, 4975, 5002, 4888, 4895, 4887, 4861, 4973, 5015, 4884, 4972, 4962, 4971]
2020-07-08 14:40:10,391 498 INFO test odoo.models.unlink: User #1 deleted res.currency.rate records with IDs: [2, 59, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 171, 3, 1, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 12]
2020-07-08 14:40:10,767 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:10,769 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 65 and Message-Id '<314011257466566.1594219210.684221267700195-openerp-message-notify@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:10,843 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [65]
2020-07-08 14:40:10,843 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:11,019 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:11,021 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:11,022 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 66 and Message-Id '<141729856670104.1594219210.891597986221313-openerp-8-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:11,071 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [66]
2020-07-08 14:40:11,072 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:11,224 498 INFO test odoo.models.unlink: User #1 deleted mail.activity records with IDs: [55]
2020-07-08 14:40:11,532 498 INFO test odoo.addons.hr_expense.tests.test_expenses: Starting TestAccountEntry.test_expense_from_email ...
2020-07-08 14:40:12,006 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:12,008 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 67 and Message-Id '<095956234365395.1594219211.892391681671143-openerp-17-hr.expense@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:12,072 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [67]
2020-07-08 14:40:12,072 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:12,096 498 INFO test odoo.addons.hr_expense.tests.test_expenses: Starting TestAccountEntry.test_expense_from_email_without_product ...
2020-07-08 14:40:12,530 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:12,532 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 68 and Message-Id '<484468152229021.1594219212.391808748245239-openerp-18-hr.expense@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:12,610 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [68]
2020-07-08 14:40:12,610 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:12,632 498 INFO test odoo.addons.hr_expense.tests.test_expenses: Starting TestAccountEntry.test_partial_payment_multiexpense ...
2020-07-08 14:40:13,233 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:13,235 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 69 and Message-Id '<531891458718588.1594219213.087144613265991-openerp-9-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:13,312 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [69]
2020-07-08 14:40:13,312 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:14,453 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:14,455 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 70 and Message-Id '<743520590250761.1594219214.386181592941284-openerp-9-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:14,528 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [70]
2020-07-08 14:40:14,528 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:16,453 498 INFO test odoo.addons.hr_expense.tests.test_expenses: Starting TestExpenseRights.test_expense_approve ...
2020-07-08 14:40:17,005 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:17,007 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 71 and Message-Id '<371559791821684.1594219216.816569805145264-openerp-12-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:17,055 498 INFO test odoo.models.unlink: User #13 deleted mail.mail records with IDs: [71]
2020-07-08 14:40:17,055 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:17,270 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:17,272 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 72 and Message-Id '<490462578582006.1594219217.167258262634277-openerp-13-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:17,305 498 INFO test odoo.models.unlink: User #15 deleted mail.mail records with IDs: [72]
2020-07-08 14:40:17,306 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:17,347 498 INFO test odoo.addons.base.models.ir_rule: Access Denied by record rules for operation: read on record ids: [14], uid: 15, model: hr.expense.sheet
2020-07-08 14:40:17,393 498 INFO test odoo.addons.base.models.ir_rule: Access Denied by record rules for operation: read on record ids: [14], uid: 15, model: hr.expense.sheet
2020-07-08 14:40:17,520 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:17,522 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 73 and Message-Id '<893937339617128.1594219217.437687873840332-openerp-14-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:17,572 498 INFO test odoo.models.unlink: User #13 deleted mail.mail records with IDs: [73]
2020-07-08 14:40:17,572 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:17,586 498 INFO test odoo.addons.hr_expense.tests.test_expenses: Starting TestExpenseRights.test_expense_create ...
2020-07-08 14:40:17,730 498 INFO test odoo.addons.base.models.ir_rule: Access Denied by record rules for operation: create on record ids: [22], uid: 12, model: hr.expense
2020-07-08 14:40:17,749 498 INFO test odoo.addons.hr_expense.tests.test_expenses: Starting TestExpenseRights.test_expense_refuse ...
2020-07-08 14:40:18,145 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:18,146 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 74 and Message-Id '<433220958887455.1594219217.958942174911499-openerp-15-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:18,199 498 INFO test odoo.models.unlink: User #13 deleted mail.mail records with IDs: [74]
2020-07-08 14:40:18,200 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:18,340 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:18,342 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 75 and Message-Id '<491294553055076.1594219218.244011402130127-openerp-16-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:18,386 498 INFO test odoo.models.unlink: User #13 deleted mail.mail records with IDs: [75]
2020-07-08 14:40:18,386 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:18,525 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:18,527 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 76 and Message-Id '<651195098059289.1594219218.426393747329712-openerp-17-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:18,579 498 INFO test odoo.models.unlink: User #13 deleted mail.mail records with IDs: [76]
2020-07-08 14:40:18,580 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:18,781 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:18,783 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 77 and Message-Id '<723676279765432.1594219218.710388660430908-openerp-15-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:18,832 498 INFO test odoo.models.unlink: User #13 deleted mail.mail records with IDs: [77]
2020-07-08 14:40:18,833 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:18,965 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:18,966 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 78 and Message-Id '<228462018327624.1594219218.905067443847656-openerp-15-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:18,968 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:19,128 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:19,131 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:19,133 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 79 and Message-Id '<784763792158908.1594219219.042475223541260-openerp-16-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:19,173 498 INFO test odoo.models.unlink: User #15 deleted mail.mail records with IDs: [79]
2020-07-08 14:40:19,174 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:19,325 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:19,327 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:19,329 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 80 and Message-Id '<710422985619105.1594219219.239360809326172-openerp-16-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:19,332 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:19,356 498 INFO test odoo.addons.base.models.ir_rule: Access Denied by record rules for operation: read on record ids: [17], uid: 15, model: hr.expense.sheet
2020-07-08 14:40:19,405 498 INFO test odoo.addons.base.models.ir_rule: Access Denied by record rules for operation: read on record ids: [17], uid: 15, model: hr.expense.sheet
2020-07-08 14:40:19,529 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:19,531 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 81 and Message-Id '<986647727657926.1594219219.450938463211060-openerp-17-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:19,581 498 INFO test odoo.models.unlink: User #13 deleted mail.mail records with IDs: [81]
2020-07-08 14:40:19,581 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:19,684 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:19,685 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 82 and Message-Id '<869695493192174.1594219219.613189935684204-openerp-17-hr.expense.sheet@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:19,689 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:19,699 498 INFO test odoo.modules.module: Ran 8 tests in 12.982s
2020-07-08 14:40:19,699 498 INFO test odoo.modules.module: odoo.addons.hr_expense.tests.test_expenses tested in 12.98s, 4953 queries
2020-07-08 14:40:19,700 498 INFO test odoo.modules.module: odoo.addons.hr_expense.tests.test_expenses_mail_subjects running tests.
2020-07-08 14:40:21,617 498 INFO test odoo.addons.hr_expense.tests.test_expenses_mail_subjects: Starting TestExpenseSubject.test_expense_subjects ...
2020-07-08 14:40:21,985 498 INFO test odoo.modules.module: Ran 1 test in 2.284s
2020-07-08 14:40:23,320 498 INFO test odoo.modules.registry: module hr_holidays_allocations: creating or updating database tables
2020-07-08 14:40:23,449 498 INFO test odoo.modules.loading: loading hr_holidays_allocations/views/hr_leave_allocation_views.xml
2020-07-08 14:40:23,581 498 INFO test odoo.modules.loading: Module hr_holidays_allocations: loading demo
2020-07-08 14:40:24,841 498 INFO test odoo.modules.registry: module hr_holidays_ceiling: creating or updating database tables
2020-07-08 14:40:25,014 498 INFO test odoo.modules.loading: loading hr_holidays_ceiling/views/hr_leave_type_views.xml
2020-07-08 14:40:25,171 498 INFO test odoo.modules.loading: loading hr_holidays_ceiling/views/hr_leave_views.xml
2020-07-08 14:40:25,265 498 INFO test odoo.modules.loading: Module hr_holidays_ceiling: loading demo
2020-07-08 14:40:26,964 498 INFO test odoo.modules.registry: module hr_holidays_employee: creating or updating database tables
2020-07-08 14:40:27,188 498 INFO test odoo.modules.loading: loading hr_holidays_employee/security/security.xml
2020-07-08 14:40:27,205 498 INFO test odoo.modules.loading: loading hr_holidays_employee/views/hr_leave_views.xml
2020-07-08 14:40:27,340 498 INFO test odoo.modules.loading: loading hr_holidays_employee/views/hr_leave_type_views.xml
2020-07-08 14:40:27,360 498 INFO test odoo.modules.loading: loading hr_holidays_employee/views/hr_employee_views.xml
2020-07-08 14:40:27,868 498 INFO test odoo.modules.loading: Module hr_holidays_employee: loading demo
2020-07-08 14:40:29,365 498 INFO test odoo.modules.registry: module hr_holidays_name_precision: creating or updating database tables
2020-07-08 14:40:29,442 498 INFO test odoo.modules.loading: Module hr_holidays_name_precision: loading demo
2020-07-08 14:40:30,657 498 INFO test odoo.modules.registry: module hr_holidays_rules: creating or updating database tables
2020-07-08 14:40:30,813 498 INFO test odoo.modules.loading: loading hr_holidays_rules/security/ir.model.access.csv
2020-07-08 14:40:30,865 498 INFO test odoo.modules.loading: loading hr_holidays_rules/views/hr_leave_rule_views.xml
2020-07-08 14:40:30,959 498 INFO test odoo.modules.loading: Module hr_holidays_rules: loading demo
2020-07-08 14:40:32,519 498 INFO test odoo.modules.registry: module hr_holidays_sequence: creating or updating database tables
2020-07-08 14:40:32,551 498 INFO test odoo.modules.loading: loading hr_holidays_sequence/views/hr_leave_type_views.xml
2020-07-08 14:40:32,722 498 INFO test odoo.modules.loading: Module hr_holidays_sequence: loading demo
2020-07-08 14:40:34,058 498 INFO test odoo.modules.registry: module hr_holidays_workflow: creating or updating database tables
2020-07-08 14:40:34,362 498 INFO test odoo.modules.loading: loading hr_holidays_workflow/security/ir.model.access.csv
2020-07-08 14:40:34,417 498 INFO test odoo.modules.loading: loading hr_holidays_workflow/security/security.xml
2020-07-08 14:40:35,060 498 INFO test odoo.modules.loading: loading hr_holidays_workflow/views/hr_leave_views.xml
2020-07-08 14:40:35,451 498 INFO test odoo.modules.loading: loading hr_holidays_workflow/views/hr_leave_allocation_views.xml
2020-07-08 14:40:35,571 498 INFO test odoo.modules.loading: Module hr_holidays_workflow: loading demo
2020-07-08 14:40:37,122 498 INFO test odoo.modules.registry: module hr_holidays_working_days: creating or updating database tables
2020-07-08 14:40:37,301 498 INFO test odoo.modules.loading: loading hr_holidays_working_days/views/hr_leave_type_views.xml
2020-07-08 14:40:37,496 498 INFO test odoo.modules.loading: Module hr_holidays_working_days: loading demo
2020-07-08 14:40:39,136 498 INFO test odoo.modules.registry: module hr_recruitment_degree_experience: creating or updating database tables
2020-07-08 14:40:39,420 498 INFO test odoo.modules.loading: loading hr_recruitment_degree_experience/views/hr_applicant_views.xml
2020-07-08 14:40:39,516 498 INFO test odoo.modules.loading: loading hr_recruitment_degree_experience/views/hr_job_views.xml
2020-07-08 14:40:39,609 498 INFO test odoo.modules.loading: loading hr_recruitment_degree_experience/views/hr_recruitment_degree_views.xml
2020-07-08 14:40:39,759 498 INFO test odoo.modules.loading: Module hr_recruitment_degree_experience: loading demo
2020-07-08 14:40:40,918 498 INFO test odoo.modules.registry: module l10n_generic_coa: creating or updating database tables
2020-07-08 14:40:40,947 498 INFO test odoo.modules.loading: loading l10n_generic_coa/data/l10n_generic_coa.xml
2020-07-08 14:40:40,954 498 INFO test odoo.modules.loading: loading l10n_generic_coa/data/account.account.template.csv
2020-07-08 14:40:41,218 498 INFO test odoo.modules.loading: loading l10n_generic_coa/data/l10n_generic_coa_post.xml
2020-07-08 14:40:41,234 498 INFO test odoo.modules.loading: Module l10n_generic_coa: loading demo
2020-07-08 14:40:41,236 498 INFO test odoo.modules.loading: loading l10n_generic_coa/demo/account_bank_statement_demo.xml
2020-07-08 14:40:41,271 498 INFO test odoo.modules.loading: loading l10n_generic_coa/demo/account_invoice_demo.xml
2020-07-08 14:40:41,376 498 INFO test odoo.modules.loading: loading l10n_generic_coa/demo/account_reconcile_model.xml
2020-07-08 14:40:42,902 498 INFO test odoo.modules.registry: module partner_codes: creating or updating database tables
2020-07-08 14:40:43,386 498 INFO test odoo.modules.loading: loading partner_codes/data/ir.config_parameter.xml
2020-07-08 14:40:43,395 498 INFO test odoo.modules.loading: loading partner_codes/data/sequences.xml
2020-07-08 14:40:43,404 498 INFO test odoo.modules.loading: loading partner_codes/views/partner.xml
2020-07-08 14:40:43,862 498 INFO test odoo.modules.loading: Module partner_codes: loading demo
2020-07-08 14:40:45,115 498 INFO test odoo.modules.registry: module partner_ergo: creating or updating database tables
2020-07-08 14:40:45,141 498 INFO test odoo.modules.loading: loading partner_ergo/views/partner.xml
2020-07-08 14:40:46,050 498 INFO test odoo.modules.loading: Module partner_ergo: loading demo
2020-07-08 14:40:47,734 498 INFO test odoo.modules.registry: module payment: creating or updating database tables
2020-07-08 14:40:48,737 498 INFO test odoo.modules.loading: loading payment/data/account_data.xml
2020-07-08 14:40:48,752 498 INFO test odoo.modules.loading: loading payment/data/payment_icon_data.xml
2020-07-08 14:40:49,225 498 INFO test odoo.modules.loading: loading payment/data/payment_acquirer_data.xml
2020-07-08 14:40:49,272 498 INFO test odoo.modules.loading: loading payment/data/payment_cron.xml
2020-07-08 14:40:49,329 498 INFO test odoo.modules.loading: loading payment/views/payment_views.xml
2020-07-08 14:40:49,929 498 INFO test odoo.modules.loading: loading payment/views/account_payment_views.xml
2020-07-08 14:40:50,048 498 INFO test odoo.modules.loading: loading payment/views/account_invoice_views.xml
2020-07-08 14:40:50,295 498 INFO test odoo.modules.loading: loading payment/views/payment_acquirer_onboarding_templates.xml
2020-07-08 14:40:50,422 498 INFO test odoo.modules.loading: loading payment/views/payment_templates.xml
2020-07-08 14:40:50,906 498 INFO test odoo.modules.loading: loading payment/views/payment_portal_templates.xml
2020-07-08 14:40:51,066 498 INFO test odoo.modules.loading: loading payment/views/assets.xml
2020-07-08 14:40:51,195 498 INFO test odoo.modules.loading: loading payment/views/res_partner_views.xml
2020-07-08 14:40:51,607 498 INFO test odoo.modules.loading: loading payment/security/ir.model.access.csv
2020-07-08 14:40:51,784 498 INFO test odoo.modules.loading: loading payment/security/payment_security.xml
2020-07-08 14:40:51,795 498 INFO test odoo.modules.loading: loading payment/wizards/payment_link_wizard_views.xml
2020-07-08 14:40:51,848 498 INFO test odoo.modules.loading: Module payment: loading demo
2020-07-08 14:40:53,249 498 INFO test odoo.modules.registry: module project_no_copy: creating or updating database tables
2020-07-08 14:40:53,471 498 INFO test odoo.modules.loading: Module project_no_copy: loading demo
2020-07-08 14:40:53,596 498 INFO test odoo.modules.module: odoo.addons.project_no_copy.tests.test_project_no_copy running tests.
2020-07-08 14:40:53,596 498 INFO test odoo.addons.project_no_copy.tests.test_project_no_copy: Starting TestProjectNoCopy.test_0020_project_copy ...
2020-07-08 14:40:54,210 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:54,212 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 83 and Message-Id '<277732949281649.1594219254.047276020050049-openerp-34-project.task@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:54,309 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [83]
2020-07-08 14:40:54,310 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:54,723 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:40:54,725 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 84 and Message-Id '<288665548620189.1594219254.646090507507324-openerp-40-project.task@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:40:54,867 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [84]
2020-07-08 14:40:54,867 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:40:55,531 498 INFO test odoo.addons.project_no_copy.tests.test_project_no_copy: Starting TestProjectNoCopy.test_0030_task_copy ...
2020-07-08 14:40:55,645 498 INFO test odoo.modules.module: Ran 2 tests in 2.049s
2020-07-08 14:40:57,436 498 INFO test odoo.modules.registry: module purchase: creating or updating database tables
2020-07-08 14:40:58,857 498 INFO test odoo.modules.loading: loading purchase/security/purchase_security.xml
2020-07-08 14:40:59,896 498 INFO test odoo.modules.loading: loading purchase/security/ir.model.access.csv
2020-07-08 14:41:00,334 498 INFO test odoo.modules.loading: loading purchase/views/account_move_views.xml
2020-07-08 14:41:00,676 498 INFO test odoo.modules.loading: loading purchase/data/purchase_data.xml
2020-07-08 14:41:00,690 498 INFO test odoo.modules.loading: loading purchase/report/purchase_reports.xml
2020-07-08 14:41:00,711 498 INFO test odoo.modules.loading: loading purchase/views/purchase_views.xml
2020-07-08 14:41:01,639 498 INFO test odoo.modules.loading: loading purchase/views/res_config_settings_views.xml
2020-07-08 14:41:02,129 498 INFO test odoo.modules.loading: loading purchase/views/product_views.xml
2020-07-08 14:41:03,384 498 INFO test odoo.modules.loading: loading purchase/views/res_partner_views.xml
2020-07-08 14:41:04,586 498 INFO test odoo.modules.loading: loading purchase/views/purchase_template.xml
2020-07-08 14:41:04,618 498 INFO test odoo.modules.loading: loading purchase/report/purchase_bill_views.xml
2020-07-08 14:41:04,695 498 INFO test odoo.modules.loading: loading purchase/report/purchase_report_views.xml
2020-07-08 14:41:04,893 498 INFO test odoo.modules.loading: loading purchase/data/mail_template_data.xml
2020-07-08 14:41:04,902 498 INFO test odoo.modules.loading: loading purchase/views/portal_templates.xml
2020-07-08 14:41:05,091 498 INFO test odoo.modules.loading: loading purchase/report/purchase_order_templates.xml
2020-07-08 14:41:05,152 498 INFO test odoo.modules.loading: loading purchase/report/purchase_quotation_templates.xml
2020-07-08 14:41:05,218 498 INFO test odoo.modules.loading: Module purchase: loading demo
2020-07-08 14:41:05,219 498 INFO test odoo.modules.loading: loading purchase/data/purchase_demo.xml
2020-07-08 14:41:05,494 498 INFO test odoo.modules.module: odoo.addons.purchase.tests.test_purchase running tests.
2020-07-08 14:41:05,933 498 INFO test odoo.addons.purchase.tests.test_purchase: Starting TestPurchase.test_date_planned_1 ...
2020-07-08 14:41:09,943 498 INFO test odoo.addons.purchase.tests.test_purchase: Starting TestPurchase.test_purchase_order_sequence ...
2020-07-08 14:41:10,030 498 INFO test odoo.modules.module: Ran 2 tests in 4.535s
2020-07-08 14:41:11,402 498 INFO test odoo.modules.registry: module snailmail_account: creating or updating database tables
2020-07-08 14:41:11,816 498 INFO test odoo.modules.loading: loading snailmail_account/views/res_config_settings_views.xml
2020-07-08 14:41:12,331 498 INFO test odoo.modules.loading: loading snailmail_account/views/assets.xml
2020-07-08 14:41:12,898 498 INFO test odoo.modules.loading: loading snailmail_account/wizard/account_invoice_send_views.xml
2020-07-08 14:41:12,972 498 INFO test odoo.modules.loading: Module snailmail_account: loading demo
2020-07-08 14:41:14,930 498 INFO test odoo.modules.registry: module stock_account: creating or updating database tables
2020-07-08 14:41:16,384 498 INFO test odoo.modules.loading: loading stock_account/security/stock_account_security.xml
2020-07-08 14:41:16,736 498 INFO test odoo.modules.loading: loading stock_account/security/ir.model.access.csv
2020-07-08 14:41:16,818 498 INFO test odoo.modules.loading: loading stock_account/wizard/stock_change_standard_price_views.xml
2020-07-08 14:41:16,869 498 INFO test odoo.modules.loading: loading stock_account/data/stock_account_data.xml
2020-07-08 14:41:16,879 498 INFO test odoo.modules.loading: loading stock_account/views/stock_account_views.xml
2020-07-08 14:41:17,283 498 INFO test odoo.modules.loading: loading stock_account/views/res_config_settings_views.xml
2020-07-08 14:41:17,868 498 INFO test odoo.modules.loading: loading stock_account/data/product_data.xml
2020-07-08 14:41:17,877 498 INFO test odoo.modules.loading: loading stock_account/views/product_views.xml
2020-07-08 14:41:18,729 498 INFO test odoo.modules.loading: loading stock_account/views/stock_quant_views.xml
2020-07-08 14:41:18,865 498 INFO test odoo.modules.loading: loading stock_account/views/stock_valuation_layer_views.xml
2020-07-08 14:41:19,146 498 INFO test odoo.modules.loading: Module stock_account: loading demo
2020-07-08 14:41:19,385 498 INFO test odoo.modules.module: odoo.addons.stock_account.tests.test_stockvaluation running tests.
2020-07-08 14:41:20,189 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:41:20,190 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 85 and Message-Id '<833460154011841.1594219280.131189823150635-openerp-20-res.users@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:41:20,230 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [85]
2020-07-08 14:41:20,279 498 INFO test odoo.models.unlink: User #1 deleted mail.message records with IDs: [870]
2020-07-08 14:41:20,279 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:41:20,286 498 INFO test odoo.addons.auth_signup.models.res_users: Password reset email sent for user <pauline> to <p.p@example.com>
2020-07-08 14:41:20,532 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_at_date_average_1 ...
2020-07-08 14:41:21,295 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_at_date_fifo_1 ...
2020-07-08 14:41:23,010 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_at_date_fifo_2 ...
2020-07-08 14:41:24,531 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_at_date_standard_1 ...
2020-07-08 14:41:26,811 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_manual_1 ...
2020-07-08 14:41:27,015 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_negative_1 ...
2020-07-08 14:41:28,073 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_negative_2 ...
2020-07-08 14:41:28,539 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_negative_3 ...
2020-07-08 14:41:29,381 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_negative_4 ...
2020-07-08 14:41:29,892 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_negative_5 ...
2020-07-08 14:41:31,876 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_perpetual_1 ...
2020-07-08 14:41:33,283 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_perpetual_2 ...
2020-07-08 14:41:34,729 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_perpetual_3 ...
2020-07-08 14:41:35,871 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_perpetual_4 ...
2020-07-08 14:41:36,658 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_perpetual_5 ...
2020-07-08 14:41:36,824 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_perpetual_6 ...
2020-07-08 14:41:37,448 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_perpetual_7 ...
2020-07-08 14:41:38,433 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_average_perpetual_8 ...
2020-07-08 14:41:39,308 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_change_cost_method_1 ...
2020-07-08 14:41:40,463 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_change_cost_method_2 ...
2020-07-08 14:41:41,734 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_add_move_in_done_picking_1 ...
2020-07-08 14:41:42,964 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_add_moveline_in_done_move_1 ...
2020-07-08 14:41:43,607 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_edit_done_move1 ...
2020-07-08 14:41:44,646 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_edit_done_move2 ...
2020-07-08 14:41:45,615 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_negative_1 ...
2020-07-08 14:41:46,626 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_negative_2 ...
2020-07-08 14:41:47,437 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_negative_3 ...
2020-07-08 14:41:48,181 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_perpetual_1 ...
2020-07-08 14:41:50,534 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_perpetual_2 ...
2020-07-08 14:41:52,569 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_perpetual_3 ...
2020-07-08 14:41:54,029 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_perpetual_4 ...
2020-07-08 14:41:55,728 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_fifo_sublocation_valuation_1 ...
2020-07-08 14:41:55,898 498 INFO test odoo.models.unlink: User #1 deleted stock.move.line records with IDs: [139]
2020-07-08 14:41:56,524 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_inventory_fifo_1 ...
2020-07-08 14:41:57,335 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_move_in_or_out ...
2020-07-08 14:41:57,573 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_realtime ...
2020-07-08 14:41:58,160 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_standard_manual_1 ...
2020-07-08 14:41:58,335 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_standard_manual_2 ...
2020-07-08 14:41:58,690 498 INFO test odoo.addons.stock_account.tests.test_stockvaluation: Starting TestStockValuation.test_standard_perpetual_1 ...
2020-07-08 14:41:59,311 498 INFO test odoo.modules.module: Ran 38 tests in 39.925s
2020-07-08 14:41:59,311 498 INFO test odoo.modules.module: odoo.addons.stock_account.tests.test_stockvaluation tested in 39.93s, 15562 queries
2020-07-08 14:41:59,314 498 INFO test odoo.modules.module: odoo.addons.stock_account.tests.test_stockvaluationlayer running tests.
2020-07-08 14:41:59,476 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_change_in_past_add_ml_in_1 ...
2020-07-08 14:42:00,459 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_change_in_past_add_move_in_1 ...
2020-07-08 14:42:01,271 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_change_in_past_decrease_in_1 ...
2020-07-08 14:42:02,354 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_change_in_past_decrease_out_1 ...
2020-07-08 14:42:03,318 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_change_in_past_increase_in_1 ...
2020-07-08 14:42:04,430 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_change_in_past_increase_out_1 ...
2020-07-08 14:42:05,448 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_dropship_1 ...
2020-07-08 14:42:06,223 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_negative_1 ...
2020-07-08 14:42:07,498 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_negative_2 ...
2020-07-08 14:42:08,181 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_negative_3 ...
2020-07-08 14:42:08,875 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_normal_1 ...
2020-07-08 14:42:09,697 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_rereturn_delivery_1 ...
2020-07-08 14:42:11,334 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_rereturn_receipt_1 ...
2020-07-08 14:42:13,007 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_return_delivery_1 ...
2020-07-08 14:42:14,261 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationAVCO.test_return_receipt_1 ...
2020-07-08 14:42:15,647 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeCostMethod.test_avco_to_fifo ...
2020-07-08 14:42:16,540 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeCostMethod.test_avco_to_standard ...
2020-07-08 14:42:17,363 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeCostMethod.test_fifo_to_avco ...
2020-07-08 14:42:18,173 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeCostMethod.test_fifo_to_standard ...
2020-07-08 14:42:19,020 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeCostMethod.test_standard_to_avco ...
2020-07-08 14:42:19,766 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeCostMethod.test_standard_to_fifo_1 ...
2020-07-08 14:42:20,553 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeCostMethod.test_standard_to_fifo_2 ...
2020-07-08 14:42:21,843 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeValuation.test_standard_auto_to_manual_1 ...
2020-07-08 14:42:22,513 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeValuation.test_standard_auto_to_manual_2 ...
2020-07-08 14:42:23,355 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeValuation.test_standard_manual_to_auto_1 ...
2020-07-08 14:42:23,900 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationChangeValuation.test_standard_manual_to_auto_2 ...
2020-07-08 14:42:24,719 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_change_in_past_add_ml_out_1 ...
2020-07-08 14:42:25,594 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_change_in_past_decrease_in_1 ...
2020-07-08 14:42:26,506 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_change_in_past_decrease_in_2 ...
2020-07-08 14:42:27,794 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_change_in_past_decrease_out_1 ...
2020-07-08 14:42:28,788 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_change_in_past_increase_in_1 ...
2020-07-08 14:42:29,799 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_change_in_past_increase_in_2 ...
2020-07-08 14:42:31,178 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_change_in_past_increase_out_1 ...
2020-07-08 14:42:32,230 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_dropship_1 ...
2020-07-08 14:42:32,905 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_negative_1 ...
2020-07-08 14:42:33,972 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_normal_1 ...
2020-07-08 14:42:34,768 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_rereturn_delivery_1 ...
2020-07-08 14:42:36,355 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_rereturn_receipt_1 ...
2020-07-08 14:42:38,079 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_return_delivery_1 ...
2020-07-08 14:42:39,352 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationFIFO.test_return_receipt_1 ...
2020-07-08 14:42:40,474 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationStandard.test_change_in_past_add_ml_in_1 ...
2020-07-08 14:42:41,304 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationStandard.test_change_in_past_decrease_in_1 ...
2020-07-08 14:42:42,379 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationStandard.test_change_in_past_decrease_out_1 ...
2020-07-08 14:42:43,238 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationStandard.test_change_in_past_increase_dropship_1 ...
2020-07-08 14:42:43,703 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationStandard.test_change_in_past_increase_in_1 ...
2020-07-08 14:42:44,706 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationStandard.test_change_in_past_increase_out_1 ...
2020-07-08 14:42:45,481 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationStandard.test_change_standard_price_1 ...
2020-07-08 14:42:46,275 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationStandard.test_dropship_1 ...
2020-07-08 14:42:46,562 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationStandard.test_negative_1 ...
2020-07-08 14:42:47,159 498 INFO test odoo.addons.stock_account.tests.test_stockvaluationlayer: Starting TestStockValuationStandard.test_normal_1 ...
2020-07-08 14:42:47,912 498 INFO test odoo.modules.module: Ran 50 tests in 48.597s
2020-07-08 14:42:47,912 498 INFO test odoo.modules.module: odoo.addons.stock_account.tests.test_stockvaluationlayer tested in 48.60s, 20291 queries
2020-07-08 14:42:49,553 498 INFO test odoo.modules.registry: module account_export: creating or updating database tables
2020-07-08 14:42:50,298 498 INFO test odoo.modules.loading: loading account_export/security/ir.model.access.csv
2020-07-08 14:42:50,424 498 INFO test odoo.modules.loading: loading account_export/data/ir.config_parameter.xml
2020-07-08 14:42:50,437 498 INFO test odoo.modules.loading: loading account_export/data/ir_cron.xml
2020-07-08 14:42:50,451 498 INFO test odoo.modules.loading: loading account_export/data/sequences.xml
2020-07-08 14:42:50,464 498 INFO test odoo.modules.loading: loading account_export/menu.xml
2020-07-08 14:42:50,494 498 INFO test odoo.modules.loading: loading account_export/views/account_move_line_batch.xml
2020-07-08 14:42:50,661 498 INFO test odoo.modules.loading: loading account_export/views/res_partner_batch.xml
2020-07-08 14:42:50,790 498 INFO test odoo.modules.loading: Module account_export: loading demo
2020-07-08 14:42:52,476 498 INFO test odoo.modules.registry: module account_file: creating or updating database tables
2020-07-08 14:42:52,712 498 INFO test odoo.modules.loading: loading account_file/security/ir.model.access.csv
2020-07-08 14:42:52,786 498 INFO test odoo.modules.loading: loading account_file/menu.xml
2020-07-08 14:42:52,810 498 INFO test odoo.modules.loading: loading account_file/views/account_file.xml
2020-07-08 14:42:52,950 498 INFO test odoo.modules.loading: loading account_file/views/account_file_flow.xml
2020-07-08 14:42:53,029 498 INFO test odoo.modules.loading: Module account_file: loading demo
2020-07-08 14:42:53,241 498 INFO test odoo.modules.module: odoo.addons.account_file.tests.test_account_file running tests.
2020-07-08 14:42:53,242 498 INFO test odoo.addons.account_file.tests.test_account_file: Starting SimpleTest.test_sql_constraint_unique_name ...
2020-07-08 14:42:54,014 498 INFO test odoo.addons.account_file.tests.test_account_file: Starting Test.test_0001_create_accounting_docs ...
2020-07-08 14:42:54,137 498 INFO test odoo.addons.account_file.tests.test_account_file: Starting Test.test_0002_accounting_file_and_flow_transitions ...
2020-07-08 14:42:54,556 498 INFO test odoo.modules.module: Ran 3 tests in 1.314s
2020-07-08 14:42:56,379 498 INFO test odoo.modules.registry: module account_payment_batch: creating or updating database tables
2020-07-08 14:42:57,057 498 INFO test odoo.modules.loading: loading account_payment_batch/data/ir_sequence.xml
2020-07-08 14:42:57,074 498 INFO test odoo.modules.loading: loading account_payment_batch/security/ir.model.access.csv
2020-07-08 14:42:57,195 498 INFO test odoo.modules.loading: loading account_payment_batch/wizards/payment_batch_selection.xml
2020-07-08 14:42:57,341 498 INFO test odoo.modules.loading: loading account_payment_batch/views/payment_batch_view.xml
2020-07-08 14:42:57,650 498 INFO test odoo.modules.loading: loading account_payment_batch/views/res_config_settings.xml
2020-07-08 14:42:58,196 498 INFO test odoo.modules.loading: Module account_payment_batch: loading demo
2020-07-08 14:43:00,086 498 INFO test odoo.modules.registry: module hr_holidays_fridays: creating or updating database tables
2020-07-08 14:43:00,297 498 INFO test odoo.modules.loading: loading hr_holidays_fridays/views/hr_leave_type_views.xml
2020-07-08 14:43:00,581 498 INFO test odoo.modules.loading: loading hr_holidays_fridays/views/hr_leave_views.xml
2020-07-08 14:43:00,718 498 INFO test odoo.modules.loading: Module hr_holidays_fridays: loading demo
2020-07-08 14:43:02,363 498 INFO test odoo.modules.registry: module l10n_us: creating or updating database tables
2020-07-08 14:43:02,499 498 INFO test odoo.modules.loading: loading l10n_us/data/res_company_data.xml
2020-07-08 14:43:02,508 498 INFO test odoo.modules.loading: loading l10n_us/views/res_partner_bank_views.xml
2020-07-08 14:43:02,586 498 INFO test odoo.modules.loading: Module l10n_us: loading demo
2020-07-08 14:43:04,489 498 INFO test odoo.modules.registry: module partner_account_gen: creating or updating database tables
2020-07-08 14:43:04,832 498 INFO test odoo.modules.loading: loading partner_account_gen/security/ir.model.access.csv
2020-07-08 14:43:04,972 498 INFO test odoo.modules.loading: loading partner_account_gen/views/account_generation_rule.xml
2020-07-08 14:43:05,144 498 INFO test odoo.modules.loading: loading partner_account_gen/views/res_partner.xml
2020-07-08 14:43:05,537 498 INFO test odoo.modules.loading: loading partner_account_gen/views/res_partner_account.xml
2020-07-08 14:43:05,612 498 INFO test odoo.modules.loading: Module partner_account_gen: loading demo
2020-07-08 14:43:07,395 498 INFO test odoo.modules.registry: module payment_transfer: creating or updating database tables
2020-07-08 14:43:07,568 498 INFO test odoo.modules.loading: loading payment_transfer/views/payment_views.xml
2020-07-08 14:43:07,648 498 INFO test odoo.modules.loading: loading payment_transfer/views/payment_transfer_templates.xml
2020-07-08 14:43:07,655 498 INFO test odoo.modules.loading: loading payment_transfer/data/payment_acquirer_data.xml
2020-07-08 14:43:07,662 498 INFO test odoo.modules.loading: Module payment_transfer: loading demo
2020-07-08 14:43:09,459 498 INFO test odoo.modules.registry: module purchase_stock: creating or updating database tables
2020-07-08 14:43:10,661 498 INFO test odoo.modules.loading: loading purchase_stock/security/ir.model.access.csv
2020-07-08 14:43:10,891 498 INFO test odoo.modules.loading: loading purchase_stock/data/purchase_stock_data.xml
2020-07-08 14:43:10,901 498 INFO test odoo.modules.loading: loading purchase_stock/data/mail_data.xml
2020-07-08 14:43:10,925 498 INFO test odoo.modules.loading: loading purchase_stock/views/purchase_views.xml
2020-07-08 14:43:11,123 498 INFO test odoo.modules.loading: loading purchase_stock/views/stock_views.xml
2020-07-08 14:43:11,495 498 INFO test odoo.modules.loading: loading purchase_stock/views/stock_rule_views.xml
2020-07-08 14:43:11,571 498 INFO test odoo.modules.loading: loading purchase_stock/views/res_config_settings_views.xml
2020-07-08 14:43:12,612 498 INFO test odoo.modules.loading: loading purchase_stock/views/stock_production_lot_views.xml
2020-07-08 14:43:12,682 498 INFO test odoo.modules.loading: loading purchase_stock/report/purchase_report_views.xml
2020-07-08 14:43:12,744 498 INFO test odoo.modules.loading: loading purchase_stock/report/purchase_report_templates.xml
2020-07-08 14:43:12,826 498 INFO test odoo.modules.loading: loading purchase_stock/report/report_stock_rule.xml
2020-07-08 14:43:12,872 498 INFO test odoo.modules.loading: Module purchase_stock: loading demo
2020-07-08 14:43:12,873 498 INFO test odoo.modules.loading: loading purchase_stock/data/purchase_stock_demo.xml
2020-07-08 14:43:14,889 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_average_price running tests.
2020-07-08 14:43:15,879 498 ERROR test odoo.sql_db: bad query: INSERT INTO "product_attribute" ("id", "create_uid", "create_date", "write_uid", "write_date", "create_variant", "name") VALUES (nextval('product_attribute_id_seq'), 1, (now() at time zone 'UTC'), 1, (now() at time zone 'UTC'), 'always', 'Color') RETURNING id
ERROR: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (4, Color, null, always, 1, 2020-07-08 14:43:14.892921, 1, 2020-07-08 14:43:14.892921, null).
2020-07-08 14:43:15,890 498 INFO test unittest.suite: ======================================================================
2020-07-08 14:43:15,891 498 ERROR test unittest.suite: ERROR: setUpClass (odoo.addons.purchase_stock.tests.test_average_price.TestAveragePrice)
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/purchase_stock/tests/common.py", line 32, in setUpClass
super(TestPurchase, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/stock/tests/common2.py", line 49, in setUpClass
super(TestStockCommon, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/product/tests/common.py", line 66, in setUpClass
cls.prod_att_1 = cls.env['product.attribute'].create({'name': 'Color'})
File "<decorator-gen-3>", line 2, in create
File "/usr/local/lib/python3.6/dist-packages/odoo/api.py", line 335, in _model_create_multi
return create(self, [arg])
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3742, in create
records = self._create(data_list)
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3828, in _create
cr.execute(query, params)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 164, in wrapper
return f(self, *args, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 241, in execute
res = self._obj.execute(query, params)
psycopg2.IntegrityError: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (4, Color, null, always, 1, 2020-07-08 14:43:14.892921, 1, 2020-07-08 14:43:14.892921, null).
2020-07-08 14:43:15,891 498 INFO test odoo.modules.module: Ran 0 tests in 1.002s
2020-07-08 14:43:15,892 498 ERROR test odoo.modules.module: Module purchase_stock: 0 failures, 1 errors
2020-07-08 14:43:15,893 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_create_picking running tests.
2020-07-08 14:43:16,890 498 ERROR test odoo.sql_db: bad query: INSERT INTO "product_attribute" ("id", "create_uid", "create_date", "write_uid", "write_date", "create_variant", "name") VALUES (nextval('product_attribute_id_seq'), 1, (now() at time zone 'UTC'), 1, (now() at time zone 'UTC'), 'always', 'Color') RETURNING id
ERROR: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (5, Color, null, always, 1, 2020-07-08 14:43:15.900108, 1, 2020-07-08 14:43:15.900108, null).
2020-07-08 14:43:16,890 498 INFO test unittest.suite: ======================================================================
2020-07-08 14:43:16,891 498 ERROR test unittest.suite: ERROR: setUpClass (odoo.addons.purchase_stock.tests.test_create_picking.TestCreatePicking)
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/product/tests/common.py", line 66, in setUpClass
cls.prod_att_1 = cls.env['product.attribute'].create({'name': 'Color'})
File "<decorator-gen-3>", line 2, in create
File "/usr/local/lib/python3.6/dist-packages/odoo/api.py", line 335, in _model_create_multi
return create(self, [arg])
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3742, in create
records = self._create(data_list)
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3828, in _create
cr.execute(query, params)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 164, in wrapper
return f(self, *args, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 241, in execute
res = self._obj.execute(query, params)
psycopg2.IntegrityError: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (5, Color, null, always, 1, 2020-07-08 14:43:15.900108, 1, 2020-07-08 14:43:15.900108, null).
2020-07-08 14:43:16,891 498 INFO test odoo.modules.module: Ran 0 tests in 0.997s
2020-07-08 14:43:16,891 498 ERROR test odoo.modules.module: Module purchase_stock: 0 failures, 1 errors
2020-07-08 14:43:16,892 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_fifo_price running tests.
2020-07-08 14:43:17,934 498 ERROR test odoo.sql_db: bad query: INSERT INTO "product_attribute" ("id", "create_uid", "create_date", "write_uid", "write_date", "create_variant", "name") VALUES (nextval('product_attribute_id_seq'), 1, (now() at time zone 'UTC'), 1, (now() at time zone 'UTC'), 'always', 'Color') RETURNING id
ERROR: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (6, Color, null, always, 1, 2020-07-08 14:43:16.89683, 1, 2020-07-08 14:43:16.89683, null).
2020-07-08 14:43:17,936 498 INFO test unittest.suite: ======================================================================
2020-07-08 14:43:17,936 498 ERROR test unittest.suite: ERROR: setUpClass (odoo.addons.purchase_stock.tests.test_fifo_price.TestFifoPrice)
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/purchase_stock/tests/common.py", line 32, in setUpClass
super(TestPurchase, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/stock/tests/common2.py", line 49, in setUpClass
super(TestStockCommon, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/product/tests/common.py", line 66, in setUpClass
cls.prod_att_1 = cls.env['product.attribute'].create({'name': 'Color'})
File "<decorator-gen-3>", line 2, in create
File "/usr/local/lib/python3.6/dist-packages/odoo/api.py", line 335, in _model_create_multi
return create(self, [arg])
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3742, in create
records = self._create(data_list)
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3828, in _create
cr.execute(query, params)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 164, in wrapper
return f(self, *args, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 241, in execute
res = self._obj.execute(query, params)
psycopg2.IntegrityError: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (6, Color, null, always, 1, 2020-07-08 14:43:16.89683, 1, 2020-07-08 14:43:16.89683, null).
2020-07-08 14:43:17,936 498 INFO test odoo.modules.module: Ran 0 tests in 1.044s
2020-07-08 14:43:17,936 498 ERROR test odoo.modules.module: Module purchase_stock: 0 failures, 1 errors
2020-07-08 14:43:17,937 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_fifo_returns running tests.
2020-07-08 14:43:18,992 498 ERROR test odoo.sql_db: bad query: INSERT INTO "product_attribute" ("id", "create_uid", "create_date", "write_uid", "write_date", "create_variant", "name") VALUES (nextval('product_attribute_id_seq'), 1, (now() at time zone 'UTC'), 1, (now() at time zone 'UTC'), 'always', 'Color') RETURNING id
ERROR: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (7, Color, null, always, 1, 2020-07-08 14:43:17.942993, 1, 2020-07-08 14:43:17.942993, null).
2020-07-08 14:43:18,993 498 INFO test unittest.suite: ======================================================================
2020-07-08 14:43:18,993 498 ERROR test unittest.suite: ERROR: setUpClass (odoo.addons.purchase_stock.tests.test_fifo_returns.TestFifoReturns)
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/purchase_stock/tests/common.py", line 32, in setUpClass
super(TestPurchase, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/stock/tests/common2.py", line 49, in setUpClass
super(TestStockCommon, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/product/tests/common.py", line 66, in setUpClass
cls.prod_att_1 = cls.env['product.attribute'].create({'name': 'Color'})
File "<decorator-gen-3>", line 2, in create
File "/usr/local/lib/python3.6/dist-packages/odoo/api.py", line 335, in _model_create_multi
return create(self, [arg])
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3742, in create
records = self._create(data_list)
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3828, in _create
cr.execute(query, params)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 164, in wrapper
return f(self, *args, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 241, in execute
res = self._obj.execute(query, params)
psycopg2.IntegrityError: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (7, Color, null, always, 1, 2020-07-08 14:43:17.942993, 1, 2020-07-08 14:43:17.942993, null).
2020-07-08 14:43:18,994 498 INFO test odoo.modules.module: Ran 0 tests in 1.057s
2020-07-08 14:43:18,994 498 ERROR test odoo.modules.module: Module purchase_stock: 0 failures, 1 errors
2020-07-08 14:43:18,995 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_move_cancel_propagation running tests.
2020-07-08 14:43:19,980 498 ERROR test odoo.sql_db: bad query: INSERT INTO "product_attribute" ("id", "create_uid", "create_date", "write_uid", "write_date", "create_variant", "name") VALUES (nextval('product_attribute_id_seq'), 1, (now() at time zone 'UTC'), 1, (now() at time zone 'UTC'), 'always', 'Color') RETURNING id
ERROR: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (8, Color, null, always, 1, 2020-07-08 14:43:19.001889, 1, 2020-07-08 14:43:19.001889, null).
2020-07-08 14:43:19,982 498 INFO test unittest.suite: ======================================================================
2020-07-08 14:43:19,982 498 ERROR test unittest.suite: ERROR: setUpClass (odoo.addons.purchase_stock.tests.test_move_cancel_propagation.TestMoveCancelPropagation)
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/purchase_stock/tests/common.py", line 32, in setUpClass
super(TestPurchase, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/stock/tests/common2.py", line 49, in setUpClass
super(TestStockCommon, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/product/tests/common.py", line 66, in setUpClass
cls.prod_att_1 = cls.env['product.attribute'].create({'name': 'Color'})
File "<decorator-gen-3>", line 2, in create
File "/usr/local/lib/python3.6/dist-packages/odoo/api.py", line 335, in _model_create_multi
return create(self, [arg])
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3742, in create
records = self._create(data_list)
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3828, in _create
cr.execute(query, params)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 164, in wrapper
return f(self, *args, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 241, in execute
res = self._obj.execute(query, params)
psycopg2.IntegrityError: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (8, Color, null, always, 1, 2020-07-08 14:43:19.001889, 1, 2020-07-08 14:43:19.001889, null).
2020-07-08 14:43:19,983 498 INFO test odoo.modules.module: Ran 0 tests in 0.988s
2020-07-08 14:43:19,983 498 ERROR test odoo.modules.module: Module purchase_stock: 0 failures, 1 errors
2020-07-08 14:43:19,984 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_onchange_product running tests.
2020-07-08 14:43:19,985 498 INFO test odoo.addons.purchase_stock.tests.test_onchange_product: Starting TestOnchangeProductId.test_onchange_product_id ...
2020-07-08 14:43:21,307 498 INFO test odoo.modules.module: Ran 1 test in 1.322s
2020-07-08 14:43:21,307 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_product_template running tests.
2020-07-08 14:43:21,308 498 INFO test odoo.addons.purchase_stock.tests.test_product_template: Starting TestProductTemplate.test_name_search ...
2020-07-08 14:43:21,829 498 INFO test odoo.modules.module: Ran 1 test in 0.521s
2020-07-08 14:43:21,830 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_purchase_delete_order running tests.
2020-07-08 14:43:22,821 498 ERROR test odoo.sql_db: bad query: INSERT INTO "product_attribute" ("id", "create_uid", "create_date", "write_uid", "write_date", "create_variant", "name") VALUES (nextval('product_attribute_id_seq'), 1, (now() at time zone 'UTC'), 1, (now() at time zone 'UTC'), 'always', 'Color') RETURNING id
ERROR: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (9, Color, null, always, 1, 2020-07-08 14:43:21.832284, 1, 2020-07-08 14:43:21.832284, null).
2020-07-08 14:43:22,822 498 INFO test unittest.suite: ======================================================================
2020-07-08 14:43:22,822 498 ERROR test unittest.suite: ERROR: setUpClass (odoo.addons.purchase_stock.tests.test_purchase_delete_order.TestDeleteOrder)
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/purchase_stock/tests/common.py", line 32, in setUpClass
super(TestPurchase, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/stock/tests/common2.py", line 49, in setUpClass
super(TestStockCommon, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/product/tests/common.py", line 66, in setUpClass
cls.prod_att_1 = cls.env['product.attribute'].create({'name': 'Color'})
File "<decorator-gen-3>", line 2, in create
File "/usr/local/lib/python3.6/dist-packages/odoo/api.py", line 335, in _model_create_multi
return create(self, [arg])
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3742, in create
records = self._create(data_list)
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3828, in _create
cr.execute(query, params)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 164, in wrapper
return f(self, *args, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 241, in execute
res = self._obj.execute(query, params)
psycopg2.IntegrityError: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (9, Color, null, always, 1, 2020-07-08 14:43:21.832284, 1, 2020-07-08 14:43:21.832284, null).
2020-07-08 14:43:22,822 498 INFO test odoo.modules.module: Ran 0 tests in 0.992s
2020-07-08 14:43:22,822 498 ERROR test odoo.modules.module: Module purchase_stock: 0 failures, 1 errors
2020-07-08 14:43:22,824 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_purchase_lead_time running tests.
2020-07-08 14:43:23,787 498 ERROR test odoo.sql_db: bad query: INSERT INTO "product_attribute" ("id", "create_uid", "create_date", "write_uid", "write_date", "create_variant", "name") VALUES (nextval('product_attribute_id_seq'), 1, (now() at time zone 'UTC'), 1, (now() at time zone 'UTC'), 'always', 'Color') RETURNING id
ERROR: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (10, Color, null, always, 1, 2020-07-08 14:43:22.83092, 1, 2020-07-08 14:43:22.83092, null).
2020-07-08 14:43:23,788 498 INFO test unittest.suite: ======================================================================
2020-07-08 14:43:23,788 498 ERROR test unittest.suite: ERROR: setUpClass (odoo.addons.purchase_stock.tests.test_purchase_lead_time.TestPurchaseLeadTime)
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/purchase_stock/tests/common.py", line 32, in setUpClass
super(TestPurchase, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/stock/tests/common2.py", line 49, in setUpClass
super(TestStockCommon, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/product/tests/common.py", line 66, in setUpClass
cls.prod_att_1 = cls.env['product.attribute'].create({'name': 'Color'})
File "<decorator-gen-3>", line 2, in create
File "/usr/local/lib/python3.6/dist-packages/odoo/api.py", line 335, in _model_create_multi
return create(self, [arg])
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3742, in create
records = self._create(data_list)
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3828, in _create
cr.execute(query, params)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 164, in wrapper
return f(self, *args, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 241, in execute
res = self._obj.execute(query, params)
psycopg2.IntegrityError: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (10, Color, null, always, 1, 2020-07-08 14:43:22.83092, 1, 2020-07-08 14:43:22.83092, null).
2020-07-08 14:43:23,789 498 INFO test odoo.modules.module: Ran 0 tests in 0.965s
2020-07-08 14:43:23,789 498 ERROR test odoo.modules.module: Module purchase_stock: 0 failures, 1 errors
2020-07-08 14:43:23,791 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_purchase_order_process running tests.
2020-07-08 14:43:24,849 498 ERROR test odoo.sql_db: bad query: INSERT INTO "product_attribute" ("id", "create_uid", "create_date", "write_uid", "write_date", "create_variant", "name") VALUES (nextval('product_attribute_id_seq'), 1, (now() at time zone 'UTC'), 1, (now() at time zone 'UTC'), 'always', 'Color') RETURNING id
ERROR: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (11, Color, null, always, 1, 2020-07-08 14:43:23.798738, 1, 2020-07-08 14:43:23.798738, null).
2020-07-08 14:43:24,851 498 INFO test unittest.suite: ======================================================================
2020-07-08 14:43:24,851 498 ERROR test unittest.suite: ERROR: setUpClass (odoo.addons.purchase_stock.tests.test_purchase_order_process.TestPurchaseOrderProcess)
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/purchase_stock/tests/common.py", line 32, in setUpClass
super(TestPurchase, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/stock/tests/common2.py", line 49, in setUpClass
super(TestStockCommon, cls).setUpClass()
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/product/tests/common.py", line 66, in setUpClass
cls.prod_att_1 = cls.env['product.attribute'].create({'name': 'Color'})
File "<decorator-gen-3>", line 2, in create
File "/usr/local/lib/python3.6/dist-packages/odoo/api.py", line 335, in _model_create_multi
return create(self, [arg])
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3742, in create
records = self._create(data_list)
File "/usr/local/lib/python3.6/dist-packages/odoo/models.py", line 3828, in _create
cr.execute(query, params)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 164, in wrapper
return f(self, *args, **kwargs)
File "/usr/local/lib/python3.6/dist-packages/odoo/sql_db.py", line 241, in execute
res = self._obj.execute(query, params)
psycopg2.IntegrityError: null value in column "display_type" violates not-null constraint
DETAIL: Failing row contains (11, Color, null, always, 1, 2020-07-08 14:43:23.798738, 1, 2020-07-08 14:43:23.798738, null).
2020-07-08 14:43:24,852 498 INFO test odoo.modules.module: Ran 0 tests in 1.060s
2020-07-08 14:43:24,852 498 ERROR test odoo.modules.module: Module purchase_stock: 0 failures, 1 errors
2020-07-08 14:43:24,853 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_reordering_rule running tests.
2020-07-08 14:43:24,853 498 INFO test odoo.addons.purchase_stock.tests.test_reordering_rule: Starting TestReorderingRule.test_procure_not_default_partner ...
2020-07-08 14:43:25,560 498 INFO test odoo.models.unlink: User #1 deleted mail.message records with IDs: [1949, 1948]
2020-07-08 14:43:25,632 498 INFO test odoo.models.unlink: User #1 deleted purchase.order records with IDs: [13]
2020-07-08 14:43:25,676 498 INFO test odoo.models.unlink: User #1 deleted mail.followers records with IDs: [1175]
2020-07-08 14:43:25,812 498 INFO test odoo.addons.purchase_stock.tests.test_reordering_rule: Starting TestReorderingRule.test_reordering_rule ...
2020-07-08 14:43:26,949 498 INFO test odoo.addons.purchase_stock.tests.test_reordering_rule: ======================================================================
2020-07-08 14:43:26,949 498 ERROR test odoo.addons.purchase_stock.tests.test_reordering_rule: FAIL: TestReorderingRule.test_reordering_rule
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/odoo/addons/purchase_stock/tests/test_reordering_rule.py", line 27, in test_reordering_rule
product_form = Form(self.env['product.product'])
File "/usr/local/lib/python3.6/dist-packages/odoo/tests/common.py", line 1431, in __init__
self._process_fvg(recordp, fvg)
File "/usr/local/lib/python3.6/dist-packages/odoo/tests/common.py", line 1515, in _process_fvg
self._o2m_set_edition_view(descr, f, level)
File "/usr/local/lib/python3.6/dist-packages/odoo/tests/common.py", line 1475, in _o2m_set_edition_view
self._process_fvg(submodel, edition, level=level-1)
File "/usr/local/lib/python3.6/dist-packages/odoo/tests/common.py", line 1515, in _process_fvg
self._o2m_set_edition_view(descr, f, level)
File "/usr/local/lib/python3.6/dist-packages/odoo/tests/common.py", line 1475, in _o2m_set_edition_view
self._process_fvg(submodel, edition, level=level-1)
File "/usr/local/lib/python3.6/dist-packages/odoo/tests/common.py", line 1503, in _process_fvg
for modifier, domain in json.loads(f.get('modifiers', '{}')).items()
File "/usr/local/lib/python3.6/dist-packages/odoo/tests/common.py", line 1503, in <dictcomp>
for modifier, domain in json.loads(f.get('modifiers', '{}')).items()
File "/usr/local/lib/python3.6/dist-packages/odoo/osv/expression.py", line 192, in normalize_domain
assert isinstance(domain, (list, tuple)), "Domains to normalize must have a 'domain' form: a list or tuple of domain components"
AssertionError: Domains to normalize must have a 'domain' form: a list or tuple of domain components
2020-07-08 14:43:26,952 498 INFO test odoo.modules.module: Ran 2 tests in 2.099s
2020-07-08 14:43:26,953 498 ERROR test odoo.modules.module: Module purchase_stock: 1 failures, 0 errors
2020-07-08 14:43:26,958 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_replenish_wizard running tests.
2020-07-08 14:43:28,667 498 INFO test odoo.addons.purchase_stock.tests.test_replenish_wizard: Starting TestReplenishWizard.test_chose_supplier_1 ...
2020-07-08 14:43:29,529 498 INFO test odoo.addons.purchase_stock.tests.test_replenish_wizard: Starting TestReplenishWizard.test_chose_supplier_2 ...
2020-07-08 14:43:30,219 498 INFO test odoo.addons.purchase_stock.tests.test_replenish_wizard: Starting TestReplenishWizard.test_chose_supplier_3 ...
2020-07-08 14:43:30,880 498 INFO test odoo.addons.purchase_stock.tests.test_replenish_wizard: Starting TestReplenishWizard.test_chose_supplier_4 ...
2020-07-08 14:43:31,500 498 INFO test odoo.addons.purchase_stock.tests.test_replenish_wizard: Starting TestReplenishWizard.test_replenish_buy_1 ...
2020-07-08 14:43:31,951 498 INFO test odoo.modules.module: Ran 5 tests in 4.992s
2020-07-08 14:43:31,954 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_stockvaluation running tests.
2020-07-08 14:43:31,954 498 INFO test odoo.addons.purchase_stock.tests.test_stockvaluation: Starting TestStockValuation.test_backorder_fifo_1 ...
2020-07-08 14:43:32,950 498 INFO test odoo.addons.purchase_stock.tests.test_stockvaluation: Starting TestStockValuation.test_change_currency_rate_average_1 ...
2020-07-08 14:43:33,275 498 INFO test odoo.models.unlink: User #1 deleted ir.model.data records with IDs: [4977, 4893, 4967, 4896, 4917, 4894, 4865, 4867, 4897, 4898, 4909, 4902, 4901, 4872, 4900, 4911, 4906, 4958, 4908, 4851, 4899, 4907, 4910, 4904, 4903, 4905, 4849, 4915, 4850, 4891, 4852, 4853, 4885, 4916, 5013, 4918, 4854, 4919, 4855, 4920, 4959, 4921, 4925, 4922, 4924, 4974, 4927, 4926, 4993, 4928, 4960, 4929, 4961, 4931, 5016, 4932, 4870, 4890, 4875, 4933, 4856, 4858, 4857, 4937, 4866, 4936, 4935, 4934, 5001, 4938, 4939, 4871, 4941, 4943, 4912, 4914, 4970, 4878, 4942, 4913, 4940, 4944, 4945, 4991, 4947, 4946, 4873, 4859, 4948, 4957, 4955, 4951, 4950, 4964, 4956, 4949, 4954, 4886, 4953, 4952, 4879, 4880, 4963, 4965, 4969, 4968, 4860, 4966, 4881, 5012, 4862, 5008, 5010, 4882, 5011, 4863, 5007, 5009, 5006, 4930, 4874, 4998, 4876, 5005, 5004, 4999, 4995, 4997, 4990, 4864, 4883, 5003, 5014, 4996, 4994, 4989, 4992, 5000, 4923, 4987, 4988, 4983, 4985, 4979, 4980, 4982, 4877, 4981, 4986, 4984, 4978, 4868, 4889, 4846, 4847, 4892, 4976, 4848, 4869, 4975, 5002, 4888, 4895, 4887, 4861, 4973, 5015, 4884, 4972, 4962, 4971]
2020-07-08 14:43:33,276 498 INFO test odoo.models.unlink: User #1 deleted res.currency.rate records with IDs: [2, 59, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 171, 3, 1, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 12]
2020-07-08 14:43:34,176 498 INFO test odoo.addons.purchase_stock.tests.test_stockvaluation: Starting TestStockValuation.test_change_unit_cost_average_1 ...
2020-07-08 14:43:34,956 498 INFO test odoo.addons.purchase_stock.tests.test_stockvaluation: Starting TestStockValuation.test_extra_move_fifo_1 ...
2020-07-08 14:43:35,923 498 INFO test odoo.models.unlink: User #1 deleted stock.move records with IDs: [314]
2020-07-08 14:43:36,071 498 INFO test odoo.addons.purchase_stock.tests.test_stockvaluation: Starting TestStockValuation.test_standard_price_change_1 ...
2020-07-08 14:43:36,976 498 INFO test odoo.modules.module: Ran 5 tests in 5.022s
2020-07-08 14:43:36,977 498 INFO test odoo.modules.module: odoo.addons.purchase_stock.tests.test_stockvaluation tested in 5.02s, 1947 queries
2020-07-08 14:43:39,670 498 INFO test odoo.modules.registry: module sale: creating or updating database tables
2020-07-08 14:43:42,015 498 INFO test odoo.modules.loading: loading sale/security/sale_security.xml
2020-07-08 14:43:43,879 498 INFO test odoo.modules.loading: loading sale/security/ir.model.access.csv
2020-07-08 14:43:44,518 498 INFO test odoo.modules.loading: loading sale/report/sale_report.xml
2020-07-08 14:43:44,557 498 INFO test odoo.modules.loading: loading sale/report/sale_report_views.xml
2020-07-08 14:43:44,685 498 INFO test odoo.modules.loading: loading sale/report/sale_report_templates.xml
2020-07-08 14:43:44,786 498 INFO test odoo.modules.loading: loading sale/report/invoice_report_templates.xml
2020-07-08 14:43:44,848 498 INFO test odoo.modules.loading: loading sale/report/report_all_channels_sales_views.xml
2020-07-08 14:43:44,866 498 INFO test odoo.modules.loading: loading sale/data/ir_sequence_data.xml
2020-07-08 14:43:44,876 498 INFO test odoo.modules.loading: loading sale/data/mail_data.xml
2020-07-08 14:43:44,927 498 INFO test odoo.modules.loading: loading sale/data/sale_data.xml
2020-07-08 14:43:44,937 498 INFO test odoo.modules.loading: loading sale/wizard/sale_make_invoice_advance_views.xml
2020-07-08 14:43:45,022 498 INFO test odoo.modules.loading: loading sale/views/sale_views.xml
2020-07-08 14:43:48,240 498 INFO test odoo.modules.loading: loading sale/views/sales_team_views.xml
2020-07-08 14:43:48,606 498 INFO test odoo.modules.loading: loading sale/views/res_partner_views.xml
2020-07-08 14:43:49,946 498 INFO test odoo.modules.loading: loading sale/views/mail_activity_views.xml
2020-07-08 14:43:50,014 498 INFO test odoo.modules.loading: loading sale/views/assets.xml
2020-07-08 14:43:50,974 498 INFO test odoo.modules.loading: loading sale/views/variant_templates.xml
2020-07-08 14:43:51,018 498 INFO test odoo.modules.loading: loading sale/views/sale_portal_templates.xml
2020-07-08 14:43:51,374 498 INFO test odoo.modules.loading: loading sale/views/sale_onboarding_views.xml
2020-07-08 14:43:51,666 498 INFO test odoo.modules.loading: loading sale/views/res_config_settings_views.xml
2020-07-08 14:43:52,374 498 INFO test odoo.modules.loading: loading sale/views/payment_views.xml
2020-07-08 14:43:52,537 498 INFO test odoo.modules.loading: loading sale/views/product_attribute_views.xml
2020-07-08 14:43:52,835 498 INFO test odoo.modules.loading: loading sale/views/product_views.xml
2020-07-08 14:43:53,083 498 INFO test odoo.modules.loading: loading sale/views/utm_campaign_views.xml
2020-07-08 14:43:53,239 498 INFO test odoo.modules.loading: loading sale/wizard/sale_payment_link_views.xml
2020-07-08 14:43:53,250 498 INFO test odoo.modules.loading: Module sale: loading demo
2020-07-08 14:43:53,251 498 INFO test odoo.modules.loading: loading sale/data/product_product_demo.xml
2020-07-08 14:43:53,412 498 INFO test odoo.modules.loading: loading sale/data/sale_demo.xml
2020-07-08 14:43:54,292 498 INFO test odoo.modules.module: odoo.addons.sale.tests.test_onchange running tests.
2020-07-08 14:43:54,293 498 INFO test odoo.addons.sale.tests.test_onchange: Starting TestOnchangeProductId.test_onchange_product_id ...
2020-07-08 14:43:56,445 498 INFO test odoo.addons.sale.tests.test_onchange: Starting TestOnchangeProductId.test_pricelist_application ...
2020-07-08 14:43:58,185 498 INFO test odoo.addons.sale.tests.test_onchange: Starting TestOnchangeProductId.test_pricelist_based_on_other ...
2020-07-08 14:43:58,712 498 INFO test odoo.addons.sale.tests.test_onchange: Starting TestOnchangeProductId.test_pricelist_uom_discount ...
2020-07-08 14:43:59,238 498 INFO test odoo.addons.sale.tests.test_onchange: Starting TestOnchangeProductId.test_pricelist_with_other_currency ...
2020-07-08 14:43:59,584 498 INFO test odoo.models.unlink: User #1 deleted ir.model.data records with IDs: [4846, 4847]
2020-07-08 14:43:59,585 498 INFO test odoo.models.unlink: User #1 deleted res.currency.rate records with IDs: [2, 1]
2020-07-08 14:43:59,811 498 INFO test odoo.modules.module: Ran 5 tests in 5.518s
2020-07-08 14:43:59,811 498 INFO test odoo.modules.module: odoo.addons.sale.tests.test_onchange tested in 5.52s, 1592 queries
2020-07-08 14:43:59,812 498 INFO test odoo.modules.module: odoo.addons.sale.tests.test_reinvoice running tests.
2020-07-08 14:44:01,043 498 INFO test odoo.addons.sale.tests.test_reinvoice: Starting TestReInvoice.test_at_cost ...
2020-07-08 14:44:05,591 498 INFO test odoo.addons.sale.tests.test_reinvoice: Starting TestReInvoice.test_no_expense ...
2020-07-08 14:44:07,213 498 INFO test odoo.addons.sale.tests.test_reinvoice: Starting TestReInvoice.test_sales_price ...
2020-07-08 14:44:11,620 498 INFO test odoo.modules.module: Ran 3 tests in 11.808s
2020-07-08 14:44:11,621 498 INFO test odoo.modules.module: odoo.addons.sale.tests.test_reinvoice tested in 11.81s, 3429 queries
2020-07-08 14:44:11,623 498 INFO test odoo.modules.module: odoo.addons.sale.tests.test_sale_order running tests.
2020-07-08 14:44:13,349 498 INFO test odoo.addons.sale.tests.test_sale_order: Starting TestSaleOrder.test_cost_invoicing ...
2020-07-08 14:44:14,410 498 INFO test odoo.addons.sale.tests.test_sale_order: Starting TestSaleOrder.test_group_invoice ...
2020-07-08 14:44:15,374 498 INFO test odoo.addons.sale.tests.test_sale_order: Starting TestSaleOrder.test_multi_currency_discount ...
2020-07-08 14:44:16,890 498 INFO test odoo.models.unlink: User #1 deleted ir.model.data records with IDs: [4977, 4893, 4967, 4896, 4917, 4894, 4865, 4867, 4897, 4898, 4909, 4902, 4901, 4872, 4900, 4911, 4906, 4958, 4908, 4851, 4899, 4907, 4910, 4904, 4903, 4905, 4849, 4915, 4850, 4891, 4852, 4853, 4885, 4916, 5013, 4918, 4854, 4919, 4855, 4920, 4959, 4921, 4925, 4922, 4924, 4974, 4927, 4926, 4993, 4928, 4960, 4929, 4961, 4931, 5016, 4932, 4870, 4890, 4875, 4933, 4856, 4858, 4857, 4937, 4866, 4936, 4935, 4934, 5001, 4938, 4939, 4871, 4941, 4943, 4912, 4914, 4970, 4878, 4942, 4913, 4940, 4944, 4945, 4991, 4947, 4946, 4873, 4859, 4948, 4957, 4955, 4951, 4950, 4964, 4956, 4949, 4954, 4886, 4953, 4952, 4879, 4880, 4963, 4965, 4969, 4968, 4860, 4966, 4881, 5012, 4862, 5008, 5010, 4882, 5011, 4863, 5007, 5009, 5006, 4930, 4874, 4998, 4876, 5005, 5004, 4999, 4995, 4997, 4990, 4864, 4883, 5003, 5014, 4996, 4994, 4989, 4992, 5000, 4923, 4987, 4988, 4983, 4985, 4979, 4980, 4982, 4877, 4981, 4986, 4984, 4978, 4868, 4889, 4846, 4847, 4892, 4976, 4848, 4869, 4975, 5002, 4888, 4895, 4887, 4861, 4973, 5015, 4884, 4972, 4962, 4971]
2020-07-08 14:44:16,890 498 INFO test odoo.models.unlink: User #1 deleted res.currency.rate records with IDs: [2, 59, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 171, 3, 1, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 12]
2020-07-08 14:44:17,546 498 INFO test odoo.addons.sale.tests.test_sale_order: Starting TestSaleOrder.test_reconciliation_with_so ...
2020-07-08 14:44:17,860 498 INFO test odoo.addons.sale.tests.test_sale_order: Starting TestSaleOrder.test_sale_order ...
2020-07-08 14:44:21,233 498 INFO test odoo.tests: skip sending email in test mode
2020-07-08 14:44:21,237 498 INFO test odoo.addons.mail.models.mail_mail: Mail with ID 86 and Message-Id '<901569652187380.1594219461.056746482849121-openerp-27-sale.order@runner-bde0c777-project-260-concurrent-0>' successfully sent
2020-07-08 14:44:21,326 498 INFO test odoo.models.unlink: User #1 deleted mail.mail records with IDs: [86]
2020-07-08 14:44:21,327 498 INFO test odoo.addons.mail.models.mail_mail: Sent batch 1 emails via mail server ID #False
2020-07-08 14:44:22,187 498 INFO test odoo.addons.sale.tests.test_sale_order: Starting TestSaleOrder.test_sale_sequence ...
2020-07-08 14:44:22,375 498 INFO test odoo.addons.sale.tests.test_sale_order: Starting TestSaleOrder.test_sale_with_taxes ...
2020-07-08 14:44:22,662 498 INFO test odoo.addons.sale.tests.test_sale_order: Starting TestSaleOrder.test_so_create_multicompany ...
2020-07-08 14:44:24,574 498 INFO test odoo.addons.sale.tests.test_sale_order: Starting TestSaleOrder.test_unlink_cancel ...
2020-07-08 14:44:24,700 498 INFO test odoo.addons.base.models.ir_model: Access Denied by ACLs for operation: unlink, uid: 21, model: sale.order
2020-07-08 14:44:24,921 498 INFO test odoo.models.unlink: User #22 deleted sale.order records with IDs: [39]
2020-07-08 14:44:25,016 498 INFO test odoo.addons.base.models.ir_model: Access Denied by ACLs for operation: unlink, uid: 21, model: sale.order
2020-07-08 14:44:25,203 498 INFO test odoo.models.unlink: User #22 deleted sale.order records with IDs: [40]
2020-07-08 14:44:25,238 498 INFO test odoo.models.unlink: User #22 deleted mail.followers records with IDs: [1332]
2020-07-08 14:44:25,306 498 INFO test odoo.modules.module: Ran 9 tests in 13.682s
2020-07-08 14:44:25,306 498 INFO test odoo.modules.module: odoo.addons.sale.tests.test_sale_order tested in 13.68s, 4531 queries
2020-07-08 14:44:25,307 498 INFO test odoo.modules.module: odoo.addons.sale.tests.test_sale_pricelist running tests.
2020-07-08 14:44:26,414 498 INFO test odoo.addons.sale.tests.test_sale_pricelist: Starting TestSaleOrder.test_sale_with_pricelist_discount_excluded ...