-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-cbd854b0f4.log
1084 lines (1083 loc) · 48.3 KB
/
1.6.0-DEV-cbd854b0f4.log
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
Julia Version 1.6.0-DEV.185
Commit cbd854b0f4 (2020-06-06 13:20 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-9.0.1 (ORCJIT, skylake)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed DataValueInterfaces ───────── v1.0.0
Installed Reexport ──────────────────── v0.2.0
Installed InvertedIndices ───────────── v1.0.0
Installed Parsers ───────────────────── v1.0.5
Installed Tables ────────────────────── v1.0.4
Installed OrderedCollections ────────── v1.2.0
Installed DataStructures ────────────── v0.17.17
Installed DataFrames ────────────────── v0.21.2
Installed DataAPI ───────────────────── v1.3.0
Installed Compat ────────────────────── v3.10.0
Installed TableTraits ───────────────── v1.0.0
Installed Missings ──────────────────── v0.4.3
Installed IteratorInterfaceExtensions ─ v1.0.0
Installed PooledArrays ──────────────── v0.5.3
Installed SortingAlgorithms ─────────── v0.3.1
Installed JSON ──────────────────────── v0.21.0
Installed CategoricalArrays ─────────── v0.8.1
Updating `~/.julia/environments/v1.6/Project.toml`
[a93c6f00] + DataFrames v0.21.2
Updating `~/.julia/environments/v1.6/Manifest.toml`
[324d7699] + CategoricalArrays v0.8.1
[34da2185] + Compat v3.10.0
[9a962f9c] + DataAPI v1.3.0
[a93c6f00] + DataFrames v0.21.2
[864edb3b] + DataStructures v0.17.17
[e2d170a0] + DataValueInterfaces v1.0.0
[41ab1584] + InvertedIndices v1.0.0
[82899510] + IteratorInterfaceExtensions v1.0.0
[682c06a0] + JSON v0.21.0
[e1d29d7a] + Missings v0.4.3
[bac558e1] + OrderedCollections v1.2.0
[69de0a69] + Parsers v1.0.5
[2dfb63ee] + PooledArrays v0.5.3
[189a3867] + Reexport v0.2.0
[a2af1166] + SortingAlgorithms v0.3.1
[3783bdb8] + TableTraits v1.0.0
[bd369af6] + Tables v1.0.4
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8bb1440f] + DelimitedFiles
[8ba89e20] + Distributed
[9fa8497b] + Future
[b77e0a4c] + InteractiveUtils
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[1a1011a3] + SharedArrays
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Testing DataFrames
Status `/tmp/jl_N6J5Uq/Project.toml`
[324d7699] CategoricalArrays v0.8.1
[34da2185] Compat v3.10.0
[9a962f9c] DataAPI v1.3.0
[a93c6f00] DataFrames v0.21.2
[864edb3b] DataStructures v0.17.17
[e7dc6d0d] DataValues v0.4.13
[41ab1584] InvertedIndices v1.0.0
[82899510] IteratorInterfaceExtensions v1.0.0
[e1d29d7a] Missings v0.4.3
[2dfb63ee] PooledArrays v0.5.3
[189a3867] Reexport v0.2.0
[a2af1166] SortingAlgorithms v0.3.1
[3783bdb8] TableTraits v1.0.0
[bd369af6] Tables v1.0.4
[ade2ca70] Dates
[9fa8497b] Future
[56ddb016] Logging
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[10745b16] Statistics
[8dfed614] Test
[4ec0a83e] Unicode
Status `/tmp/jl_N6J5Uq/Manifest.toml`
[324d7699] CategoricalArrays v0.8.1
[34da2185] Compat v3.10.0
[9a962f9c] DataAPI v1.3.0
[a93c6f00] DataFrames v0.21.2
[864edb3b] DataStructures v0.17.17
[e2d170a0] DataValueInterfaces v1.0.0
[e7dc6d0d] DataValues v0.4.13
[41ab1584] InvertedIndices v1.0.0
[82899510] IteratorInterfaceExtensions v1.0.0
[682c06a0] JSON v0.21.0
[e1d29d7a] Missings v0.4.3
[bac558e1] OrderedCollections v1.2.0
[69de0a69] Parsers v1.0.5
[2dfb63ee] PooledArrays v0.5.3
[189a3867] Reexport v0.2.0
[a2af1166] SortingAlgorithms v0.3.1
[3783bdb8] TableTraits v1.0.0
[bd369af6] Tables v1.0.4
[2a0f44e3] Base64
[ade2ca70] Dates
[8bb1440f] DelimitedFiles
[8ba89e20] Distributed
[9fa8497b] Future
[b77e0a4c] InteractiveUtils
[76f85450] LibGit2
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[44cfe95a] Pkg
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[ea8e919c] SHA
[9e88b42a] Serialization
[1a1011a3] SharedArrays
[6462fe0b] Sockets
[2f01184e] SparseArrays
[10745b16] Statistics
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
Running tests:
Test Summary: | Pass Total
make_unique | 3 3
Test Summary: | Pass Total
repeat count | 5 5
Test Summary: | Pass Total
repeat inner_outer | 8 8
Test Summary: | Pass Total
repeat! count | 8 8
Test Summary: | Pass Total
repeat! inner_outer | 11 11
[1m[32mPASSED[0m: utils.jl
Test Summary: | Pass Total
hcat | 10 10
Test Summary: | Pass Total
hcat: copying | 26 26
Test Summary: | Pass Total
hcat ::AbstractDataFrame | 2 2
Test Summary: | Pass Total
hcat ::AbstractDataFrame | 2 2
Test Summary: | Pass Total
hcat ::AbstractVectors | 11 11
Test Summary: | Pass Total
hcat: copycols | 76 76
Test Summary: | Pass Total
vcat | 21 21
Test Summary: | Pass Total
vcat copy | 2 2
Test Summary: | Pass Total
vcat >2 args | 4 4
Test Summary: | Pass Total
vcat mixed coltypes | 18 18
Test Summary: | Pass Total
vcat out of order | 19 19
Test Summary: | Pass Total
vcat with cols=:union | 6 6
Test Summary: | Pass Total
vcat with cols=:intersect | 6 6
Test Summary: | Pass Total
vcat with cols::Vector | 30 30
Test Summary: | Pass Total
vcat thrown exceptions | 32 32
Test Summary: | Pass Total
vcat with view | 1 1
[1m[32mPASSED[0m: cat.jl
Test Summary: | Pass Total
constructors | 40 40
Test Summary: | Pass Total
completecases and dropmissing | 236 236
Test Summary: | Pass Total
merge | 17 17
Test Summary: | Pass Total
join tests | 3 3
Test Summary: | Pass Total
nonunique, nonunique, unique! with extra argument | 41 41
Test Summary: | Pass Total
filter() and filter!() | 44 44
Test Summary: | Pass Total
filter and filter! with AsTable | 8 8
Test Summary: | Pass Total
names with cols | 20 20
[1m[32mPASSED[0m: data.jl
Test Summary: | Pass Total
Index indexing | 56 56
Test Summary: | Pass Total
rename! | 19 19
Test Summary: | Pass Total
SubIndex | 74 74
Test Summary: | Pass Total
selector mutation | 16 16
Test Summary: | Pass Total
fuzzy matching | 12 12
Test Summary: | Pass Total
Regex indexing | 46 46
Test Summary: | Pass Total
Not indexing | 36 36
Test Summary: | Pass Total
Between indexing | 36 36
Test Summary: | Pass Total
All indexing | 41 41
Test Summary: | Pass Total
views | 11 11
[1m[32mPASSED[0m: index.jl
Test Summary: | Pass Total
randomized tests for rename! | 14295 14295
Test Summary: | Pass Total
additional rename! tests | 6610 6610
Test Summary: | Pass Total
rename with integer source | 29 29
Test Summary: | Pass Total
equality | 9 9
Test Summary: | Pass Total
copying | 9 9
Test Summary: | Pass Total
similar / missings | 2 2
Test Summary: | Pass Total
hasproperty | 5 5
┌ Warning: inserting colums using a keyword argument is deprecated, use `insertcols!(df, col_ind, :a => 1, makeunique=false)` instead.
│ caller = ip:0x0
└ @ Core :-1
Test Summary: | Pass Total
insertcols! | 87 87
Test Summary: | Pass Total
DataFrame constructors | 19 19
Test Summary: | Pass Total
push!(df, row) | 69 69
Test Summary: | Pass Total
delete! | 44 44
Test Summary: | Pass Total
describe | 10 10
Test Summary: | Pass Total
append! | 35 35
Test Summary: | Pass Total
append! default options | 11 11
Test Summary: | Pass Total
append! advanced options | 174 174
Test Summary: | Pass Total
new append! and push! tests | 30 30
Test Summary: | Pass Total
test categorical! | 14 14
Test Summary: | Pass Total
categorical! | 11 11
Test Summary: | Pass Total
rename | 47 47
Test Summary: | Pass Total
flexible rename arguments | 30 30
Test Summary: | Pass Total
size | 5 5
Test Summary: | Pass Total
description | 8 8
Test Summary: | Pass Total
column conversions | 172 172
Test Summary: | Pass Total
test disallowmissing | 730 730
Test Summary: | Pass Total
test allowmissing | 360 360
Test Summary: | Pass Total
test categorical | 496 496
Test Summary: | Pass Total
similar | 8 8
Test Summary: | Pass Total
passing range to a DataFrame | 1 1
Test Summary: | Pass Total
test getindex using ! syntax | 15 15
Test Summary: | Pass Total
test corner case of getindex | 2 2
Test Summary: | Pass Total
empty data frame getindex | 9 9
Test Summary: | Pass Total
handling of end in indexing | 22 22
Test Summary: | Pass Total
aliasing in indexing | 5 5
Test Summary: | Pass Total
getproperty, setproperty! and propertynames | 10 10
Test Summary: | Pass Total
duplicate column names | 1 1
Test Summary: | Pass Total
parent, size and axes | 11 11
Test Summary: | Pass Total
0-row DataFrame corner cases | 4 4
Test Summary: |
And and Between tests | No tests
Test Summary: | Pass Total
vcat and push! with :orderequal | 14 14
Test Summary: | Pass Total
push! with :subset | 18 18
Test Summary: | Pass Total
push! with :intersect | 12 12
Test Summary: | Pass Total
push!(df, row) with :union | 56 56
Test Summary: | Pass Total
push!(df, row) with promote options | 22 22
[1m[32mPASSED[0m: dataframe.jl
Test Summary: | Pass Total
select! Not | 13 13
Test Summary: | Pass Total
select Not | 58 58
Test Summary: | Pass Total
select Not on SubDataFrame | 70 70
Test Summary: | Pass Total
select! | 35 35
Test Summary: | Pass Total
select | 66 66
Test Summary: | Pass Total
select on SubDataFrame | 78 78
Test Summary: | Pass Total
select! on all columns | 21 21
Test Summary: | Pass Total
select and select! with multiple selectors passed | 11 11
Test Summary: | Pass Total
select and select! renaming | 23 23
Test Summary: | Pass Total
select and select! many columns naming | 24 24
Test Summary: | Pass Total
select and select! many different transforms | 25 25
Test Summary: | Pass Total
nrow in select | 24 24
Test Summary: | Pass Total
select and select! reserved return values | 28 28
Test Summary: | Pass Total
select and select! empty selection | 16 16
Test Summary: | Pass Total
wrong selection patterns | 4 4
Test Summary: | Pass Total
select and select! duplicates | 15 15
Test Summary: | Pass Total
SubDataFrame selection | 17 17
Test Summary: | Pass Total
pseudo-broadcasting | 152 152
Test Summary: | Pass Total
copycols special cases | 11 11
Test Summary: | Pass Total
empty select | 5 5
Test Summary: | Pass Total
transform and transform! | 30 30
Test Summary: | Pass Total
vectors of pairs | 18 18
AsTable tests: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/select.jl:1109
Expression: select(df, AsTable(:) => sum ∘ sum) == repeat(DataFrame(a_b_c_function = 45), nrow(df))
Evaluated: 3×1 DataFrame
│ Row │ a_b_c_ComposedFunction │
│ │ Int64 │
├─────┼────────────────────────┤
│ 1 │ 45 │
│ 2 │ 45 │
│ 3 │ 45 │ == 3×1 DataFrame
│ Row │ a_b_c_function │
│ │ Int64 │
├─────┼────────────────┤
│ 1 │ 45 │
│ 2 │ 45 │
│ 3 │ 45 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/select.jl:1109
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/select.jl:1104
AsTable tests: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/select.jl:1111
Expression: combine(df, AsTable(:) => sum ∘ sum) == DataFrame(a_b_c_function = 45)
Evaluated: 1×1 DataFrame
│ Row │ a_b_c_ComposedFunction │
│ │ Int64 │
├─────┼────────────────────────┤
│ 1 │ 45 │ == 1×1 DataFrame
│ Row │ a_b_c_function │
│ │ Int64 │
├─────┼────────────────┤
│ 1 │ 45 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/select.jl:1111
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/select.jl:1104
AsTable tests: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/select.jl:1113
Expression: transform(df, AsTable(:) => sum ∘ sum) == DataFrame(a = 1:3, b = 4:6, c = 7:9, a_b_c_function = 45)
Evaluated: 3×4 DataFrame
│ Row │ a │ b │ c │ a_b_c_ComposedFunction │
│ │ Int64 │ Int64 │ Int64 │ Int64 │
├─────┼───────┼───────┼───────┼────────────────────────┤
│ 1 │ 1 │ 4 │ 7 │ 45 │
│ 2 │ 2 │ 5 │ 8 │ 45 │
│ 3 │ 3 │ 6 │ 9 │ 45 │ == 3×4 DataFrame
│ Row │ a │ b │ c │ a_b_c_function │
│ │ Int64 │ Int64 │ Int64 │ Int64 │
├─────┼───────┼───────┼───────┼────────────────┤
│ 1 │ 1 │ 4 │ 7 │ 45 │
│ 2 │ 2 │ 5 │ 8 │ 45 │
│ 3 │ 3 │ 6 │ 9 │ 45 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/select.jl:1113
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/select.jl:1104
Test Summary: | Pass Fail Total
AsTable tests | 11 3 14
[1m[31mFAILED[0m: select.jl
LoadError: Some tests did not pass: 11 passed, 3 failed, 0 errored, 0 broken.
in expression starting at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/select.jl:1
Test Summary: | Pass Total
the output of unstack | 27 27
Test Summary: | Pass Total
unstack promotion to support missing values | 8 8
Test Summary: | Pass Total
duplicate entries in unstack warnings | 9 9
Test Summary: | Pass Total
missing values in colkey | 6 6
Test Summary: | Pass Total
stack-unstack correctness | 4 4
Test Summary: | Pass Total
reshape | 78 78
Test Summary: | Pass Total
column names duplicates | 5 5
Test Summary: | Pass Total
flatten single column | 13 13
Test Summary: | Pass Total
flatten multiple columns | 12 12
Test Summary: | Pass Total
test RepeatedVector for categorical | 6 6
Test Summary: | Pass Total
stack categorical test | 31 31
Test Summary: | Pass Total
test stack eltype | 8 8
[1m[32mPASSED[0m: reshape.jl
Test Summary: | Pass Total
constructors | 28 28
Test Summary: | Pass Total
getindex and setindex! | 53 53
Test Summary: | Pass Total
equality | 17 17
Test Summary: | Pass Total
isless | 13 13
Test Summary: | Pass Total
hashing | 6 6
Test Summary: | Pass Total
grouping | 6 6
Test Summary: | Pass Total
getproperty, setproperty! and propertynames | 6 6
Test Summary: | Pass Total
keys, values and iteration, size | 31 31
Test Summary: | Pass Total
convert, copy and merge | 24 24
Test Summary: | Pass Total
parent and parentindices | 34 34
Test Summary: | Pass Total
iteration and collect | 10 10
Test Summary: | Pass Total
duplicate column | 2 2
Test Summary: | Pass Total
conversion and push! | 15 15
Test Summary: | Pass Total
show | 11 11
Test Summary: | Pass Total
check Vector type | 1 1
Test Summary: | Pass Total
DataFrameRow | 2 2
[1m[32mPASSED[0m: dataframerow.jl
Test Summary: | Pass Total
LaTeX export | 4 4
Test Summary: | Pass Total
Huge LaTeX export | 2 2
Test Summary: | Pass Total
HTML output | 10 10
Test Summary: | Pass Total
limit attribute | 2 2
Test Summary: | Pass Total
printtable | 1 1
Test Summary: | Pass Total
csv/tsv output | 6 6
Test Summary: | Pass Total
empty data frame and DataFrameRow | 12 12
Test Summary: | Pass Total
consistency | 8 8
Test Summary: | Pass Total
summary tests | 16 16
Test Summary: | Pass Total
eltypes tests | 18 18
Test Summary: | Pass Total
improved printing of special types | 8 8
[1m[32mPASSED[0m: io.jl
Test Summary: | Pass Total
constructors | 72 72
Test Summary: | Pass Total
DataFrame keyword argument constructor | 22 22
Test Summary: | Pass Total
DataFrame constructor | 21 21
Test Summary: | Pass Total
pair constructor | 22 22
Test Summary: | Pass Total
associative | 18 18
Test Summary: | Pass Total
vector constructors | 91 91
Test Summary: | Pass Total
recyclers | 4 4
Test Summary: | Pass Total
constructor thrown exceptions | 17 17
Test Summary: | Pass Total
column types | 3 3
Test Summary: | Pass Total
Matrix constructor | 4 4
Test Summary: | Pass Total
constructor with types | 33 33
Test Summary: | Pass Total
expansion of Ref and 0-dimensional arrays | 2 2
Test Summary: | Pass Total
broadcasting into 0 rows | 6 6
[1m[32mPASSED[0m: constructors.jl
Test Summary: | Pass Total
Conversion tests | 72 72
[1m[32mPASSED[0m: conversions.jl
Test Summary: | Pass Total
standard tests | 189 189
Test Summary: | Pass Total
non standard selectors | 4 4
[1m[32mPASSED[0m: sort.jl
Test Summary: | Pass Total
parent | 3 3
Test Summary: | Pass Total
consistency | 2 2
Test Summary: | Pass Total
accepted columns | 8 8
Test Summary: | Pass Total
groupby and combine(::Function, ::GroupedDataFrame) | 1160 1160
Test Summary: | Pass Total
grouping with missings | 1372 1372
Test Summary: | Pass Total
grouping with three keys | 2906 2906
Test Summary: | Pass Total
grouping with hash collisions | 2 2
Test Summary: | Pass Total
combine with pair interface | 141 141
Test Summary: | Pass Total
combine with aggregation functions (skipmissing=false, sort=false, indices=false) | 370 370
Test Summary: | Pass Total
combine with aggregation functions (skipmissing=false, sort=false, indices=true) | 471 471
Test Summary: | Pass Total
combine with aggregation functions (skipmissing=false, sort=true, indices=false) | 370 370
Test Summary: | Pass Total
combine with aggregation functions (skipmissing=false, sort=true, indices=true) | 471 471
Test Summary: | Pass Total
combine with aggregation functions (skipmissing=true, sort=false, indices=false) | 370 370
Test Summary: | Pass Total
combine with aggregation functions (skipmissing=true, sort=false, indices=true) | 471 471
Test Summary: | Pass Total
combine with aggregation functions (skipmissing=true, sort=true, indices=false) | 370 370
Test Summary: | Pass Total
combine with aggregation functions (skipmissing=true, sort=true, indices=true) | 471 471
Test Summary: | Pass Total
combine with columns named like grouping keys | 17 17
Test Summary: | Pass Total
iteration protocol | 4 4
Test Summary: | Pass Total
type stability of index fields | 1 1
Test Summary: | Pass Total
Array-like getindex | 39 39
Test Summary: | Pass Total
== and isequal | 19 19
Test Summary: | Pass Total
show | 15 15
Test Summary: | Pass Total
DataFrame | 24 24
Test Summary: | Pass Total
groupindices, groupcols, and valuecols | 28 28
Test Summary: | Pass Total
non standard cols arguments | 34 34
Test Summary: | Pass Total
GroupedDataFrame dictionary interface | 35 35
Test Summary: | Pass Total
GroupKey and GroupKeys | 149 149
Test Summary: | Pass Total
GroupedDataFrame indexing with array of keys | 240 240
Test Summary: | Pass Total
InvertedIndex with GroupedDataFrame | 33 33
Test Summary: | Pass Total
GroupedDataFrame array index homogeneity | 49 49
Test Summary: | Pass Total
Parent DataFrame names changed | 18 18
Test Summary: | Pass Total
haskey for GroupKey | 26 26
Test Summary: | Pass Total
Check aggregation of DataFrameRow | 4 4
Test Summary: | Pass Total
Allow returning DataFrame() or NamedTuple() to drop group | 3026 3026
Test Summary: | Pass Total
auto-splatting, ByRow, and column renaming | 9 9
Test Summary: | Pass Total
hard tabular return value cases | 26 26
Test Summary: | Pass Total
last Pair interface with multiple return values | 8 8
Test Summary: | Pass Total
keepkeys | 3 3
Test Summary: | Pass Total
additional do_call tests | 13 13
Test Summary: | Pass Total
mixing of different return lengths and pseudo-broadcasting | 101 101
Test Summary: | Pass Total
passing columns | 27 27
Test Summary: | Pass Total
correct dropping of groups | 10 10
Test Summary: | Pass Total
AsTable tests | 14 14
Test Summary: | Pass Total
test correctness of ungrouping | 5 5
Test Summary: | Pass Total
combine GroupedDataFrame | 138 138
Test Summary: | Pass Total
select and transform GroupedDataFrame | 316 316
Test Summary: | Pass Total
select! and transform! GroupedDataFrame | 144 144
corner cases of group_reduce: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2225
Expression: combine(gdf, :x => sum ∘ skipmissing) == DataFrame(g = 1:2, x_function = [3.0, 4.5])
Evaluated: 2×2 DataFrame
│ Row │ g │ x_ComposedFunction │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────────────┤
│ 1 │ 1 │ 3.0 │
│ 2 │ 2 │ 4.5 │ == 2×2 DataFrame
│ Row │ g │ x_function │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────┤
│ 1 │ 1 │ 3.0 │
│ 2 │ 2 │ 4.5 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2225
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2222
corner cases of group_reduce: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2227
Expression: combine(gdf, :x => mean ∘ skipmissing) == DataFrame(g = 1:2, x_function = [1.0, 1.5])
Evaluated: 2×2 DataFrame
│ Row │ g │ x_ComposedFunction │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────────────┤
│ 1 │ 1 │ 1.0 │
│ 2 │ 2 │ 1.5 │ == 2×2 DataFrame
│ Row │ g │ x_function │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────┤
│ 1 │ 1 │ 1.0 │
│ 2 │ 2 │ 1.5 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2227
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2222
corner cases of group_reduce: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2229
Expression: combine(gdf, :x => var ∘ skipmissing) == DataFrame(g = 1:2, x_function = [0.0, 0.0])
Evaluated: 2×2 DataFrame
│ Row │ g │ x_ComposedFunction │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────────────┤
│ 1 │ 1 │ 0.0 │
│ 2 │ 2 │ 0.0 │ == 2×2 DataFrame
│ Row │ g │ x_function │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────┤
│ 1 │ 1 │ 0.0 │
│ 2 │ 2 │ 0.0 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2229
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2222
corner cases of group_reduce: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2234
Expression: combine(gdf, :x => sum ∘ skipmissing) == DataFrame(g = 1:2, x_function = [3, 2])
Evaluated: 2×2 DataFrame
│ Row │ g │ x_ComposedFunction │
│ │ Int64 │ Int64 │
├─────┼───────┼────────────────────┤
│ 1 │ 1 │ 3 │
│ 2 │ 2 │ 2 │ == 2×2 DataFrame
│ Row │ g │ x_function │
│ │ Int64 │ Int64 │
├─────┼───────┼────────────┤
│ 1 │ 1 │ 3 │
│ 2 │ 2 │ 2 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2234
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2222
corner cases of group_reduce: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2236
Expression: combine(gdf, :x => mean ∘ skipmissing) == DataFrame(g = 1:2, x_function = [1.0, 1.0])
Evaluated: 2×2 DataFrame
│ Row │ g │ x_ComposedFunction │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────────────┤
│ 1 │ 1 │ 1.0 │
│ 2 │ 2 │ 1.0 │ == 2×2 DataFrame
│ Row │ g │ x_function │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────┤
│ 1 │ 1 │ 1.0 │
│ 2 │ 2 │ 1.0 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2236
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2222
corner cases of group_reduce: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2238
Expression: combine(gdf, :x => var ∘ skipmissing) == DataFrame(g = 1:2, x_function = [0.0, 0.0])
Evaluated: 2×2 DataFrame
│ Row │ g │ x_ComposedFunction │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────────────┤
│ 1 │ 1 │ 0.0 │
│ 2 │ 2 │ 0.0 │ == 2×2 DataFrame
│ Row │ g │ x_function │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────┤
│ 1 │ 1 │ 0.0 │
│ 2 │ 2 │ 0.0 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2238
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2222
corner cases of group_reduce: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2243
Expression: combine(gdf, :x => sum ∘ skipmissing) == DataFrame(g = 1:2, x_function = [3, 2])
Evaluated: 2×2 DataFrame
│ Row │ g │ x_ComposedFunction │
│ │ Int64 │ Int64 │
├─────┼───────┼────────────────────┤
│ 1 │ 1 │ 3 │
│ 2 │ 2 │ 2 │ == 2×2 DataFrame
│ Row │ g │ x_function │
│ │ Int64 │ Int64 │
├─────┼───────┼────────────┤
│ 1 │ 1 │ 3 │
│ 2 │ 2 │ 2 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2243
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2222
corner cases of group_reduce: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2245
Expression: combine(gdf, :x => mean ∘ skipmissing) == DataFrame(g = 1:2, x_function = [1.0, 1.0])
Evaluated: 2×2 DataFrame
│ Row │ g │ x_ComposedFunction │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────────────┤
│ 1 │ 1 │ 1.0 │
│ 2 │ 2 │ 1.0 │ == 2×2 DataFrame
│ Row │ g │ x_function │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────┤
│ 1 │ 1 │ 1.0 │
│ 2 │ 2 │ 1.0 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2245
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2222
corner cases of group_reduce: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2247
Expression: combine(gdf, :x => var ∘ skipmissing) == DataFrame(g = 1:2, x_function = [0.0, 0.0])
Evaluated: 2×2 DataFrame
│ Row │ g │ x_ComposedFunction │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────────────┤
│ 1 │ 1 │ 0.0 │
│ 2 │ 2 │ 0.0 │ == 2×2 DataFrame
│ Row │ g │ x_function │
│ │ Int64 │ Float64 │
├─────┼───────┼────────────┤
│ 1 │ 1 │ 0.0 │
│ 2 │ 2 │ 0.0 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2247
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2222
corner cases of group_reduce: Test Failed at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2286
Expression: combine(gdf, :x => sum ∘ skipmissing) == DataFrame(g = 1, x_function = 0)
Evaluated: 1×2 DataFrame
│ Row │ g │ x_ComposedFunction │
│ │ Int64 │ Int64 │
├─────┼───────┼────────────────────┤
│ 1 │ 1 │ 0 │ == 1×2 DataFrame
│ Row │ g │ x_function │
│ │ Int64 │ Int64 │
├─────┼───────┼────────────┤
│ 1 │ 1 │ 0 │
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2286
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1115
[3] top-level scope at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:2222
Test Summary: | Pass Fail Total
corner cases of group_reduce | 62 10 72
[1m[31mFAILED[0m: grouping.jl
LoadError: Some tests did not pass: 62 passed, 10 failed, 0 errored, 0 broken.
in expression starting at /home/pkgeval/.julia/packages/DataFrames/kwVTY/test/grouping.jl:1
Test Summary: | Pass Total
join types | 17 17
Test Summary: | Pass Total
Test empty inputs 1 | 21 21
Test Summary: | Pass Total
Test empty inputs 2 | 21 21
Test Summary: | Pass Total
issue #960 | 4 4
Test Summary: | Pass Total
all joins | 30 30
Test Summary: | Pass Total
all joins with CategoricalArrays | 32 32
Test Summary: | Pass Total
maintain CategoricalArray levels ordering on join - non-`on` cols | 6 6
Test Summary: | Pass Total
maintain CategoricalArray levels ordering on join - ordering conflicts | 10 10
Test Summary: | Pass Total
maintain CategoricalArray levels ordering on join - left is categorical | 10 10
Test Summary: | Pass Total
join on columns with different left/right names | 18 18
Test Summary: | Pass Total
join with a column of type Any | 16 16
Test Summary: | Pass Total
joins with categorical columns and no matching rows | 24 24
Test Summary: | Pass Total
indicator columns | 4 4
Test Summary: | Pass Total
test checks of merge key uniqueness | 18 18
Test Summary: | Pass Total
consistency | 3 3
Test Summary: | Pass Total
multi data frame join | 10 10
Test Summary: | Pass Total
flexible on in join | 4 4
[1m[32mPASSED[0m: join.jl
Test Summary: | Pass Total
eachrow and eachcol | 34 34
Test Summary: | Pass Total
mapcols | 9 9
Test Summary: | Pass Total
mapcols! | 9 9
Test Summary: | Pass Total
SubDataFrame | 5 5
Test Summary: | Pass Total
parent mutation | 4 4
Test Summary: | Pass Total
getproperty and propertynames | 22 22
Test Summary: |
overload Compat functions | No tests
Test Summary: | Pass Total
keys and pairs for eachcol | 10 10
[1m[32mPASSED[0m: iteration.jl
Test Summary: | Pass Total
nonunique | 18 18
[1m[32mPASSED[0m: duplicates.jl
Test Summary: | Pass Total
Basic show test with allrows and allcols | 9 9
Test Summary: | Pass Total
displaysize test | 4 4
Test Summary: | Pass Total
IOContext parameters test | 2 2
Test Summary: | Pass Total
SubDataFrame show test | 1 1
Test Summary: | Pass Total
Test showing StackedVector and RepeatedVector | 3 3
Test Summary: | Pass Total
Test colors and non-standard values: missing and nothing | 3 3
Test Summary: | Pass Total
Test correct width computation | 1 1
Test Summary: | Pass Total
Test showing special types | 5 5
Test Summary: | Pass Total
Test using :compact parameter of IOContext | 2 2
Test Summary: | Pass Total
Test of DataFrameRows and DataFrameColumns | 4 4
Test Summary: | Pass Total
Test empty data frame and DataFrameRow | 3 3
Test Summary: | Pass Total
consistency | 2 2
Test Summary: | Pass Total
wide type name | 6 6
Test Summary: | Pass Total
wide type name | 2 2
[1m[32mPASSED[0m: show.jl
Test Summary: | Pass Total
copy - SubDataFrame | 5 5
Test Summary: | Pass Total
view -- DataFrame | 77 77
Test Summary: | Pass Total
view -- SubDataFrame | 62 62
Test Summary: | Pass Total
getproperty, setproperty! and propertynames | 8 8
Test Summary: | Pass Total
index | 11 11
Test Summary: | Pass Total
delete! | 1 1
Test Summary: | Pass Total
parent | 6 6
Test Summary: | Pass Total
duplicate column | 1 1
Test Summary: | Pass Total
conversion to DataFrame | 12 12
Test Summary: | Pass Total
setindex! in view | 4 4
[1m[32mPASSED[0m: subdataframe.jl
Test Summary: | Pass Total
Tables | 98 98
Test Summary: | Pass Total
DataFrame! | 9 9
Test Summary: | Pass Total
columnindex | 2 2
Test Summary: | Pass Total
eachrow and eachcol integration | 29 29
[1m[32mPASSED[0m: tables.jl
Test Summary: | Pass Total
TableTraits | 10 10
[1m[32mPASSED[0m: tabletraits.jl
Test Summary: | Pass Total
getindex DataFrame | 87 87
Test Summary: | Pass Total
getindex df[!, col] | 13 13
Test Summary: | Pass Total
view DataFrame | 131 131
Test Summary: | Pass Total
getindex SubDataFrame | 140 140
Test Summary: | Pass Total
view SubDataFrame | 143 143
Test Summary: | Pass Total
getindex DataFrameRow | 22 22
Test Summary: | Pass Total
view DataFrameRow | 25 25
Test Summary: | Pass Total
additional tests of post-! getindex rules | 230 230
Test Summary: | Pass Total
setindex! on DataFrame | 100 100
Test Summary: | Pass Total
setindex! on SubDataFrame | 240 240
Test Summary: | Pass Total
setindex! on DataFrameRow | 101 101
Test Summary: | Pass Total
setindex! with ! or : and multiple cols | 24 24
Test Summary: | Pass Total
additional setindex! tests | 5 5
Test Summary: | Pass Total
invalid view tests | 28 28
Test Summary: | Pass Total
string indexing | 115 115
Test Summary: | Pass Total
begin and end tests | 18 18
[1m[32mPASSED[0m: indexing.jl
Test Summary: | Pass Total
CartesianIndex | 24 24
Test Summary: | Pass Total
broadcasting of AbstractDataFrame objects | 28 28
Test Summary: | Pass Total
broadcasting of AbstractDataFrame objects thrown exceptions | 10 10
Test Summary: | Pass Total
broadcasting expansion | 5 5
Test Summary: | Pass Total
broadcasting of AbstractDataFrame objects corner cases | 34 34
Test Summary: | Pass Total
normal data frame and data frame row in broadcasted assignment - one column | 117 117
Test Summary: | Pass Total
normal data frame and data frame view in broadcasted assignment - two columns | 104 104
Test Summary: | Pass Total
assignment to a whole data frame and data frame row | 8 8
Test Summary: | Pass Total
extending data frame in broadcasted assignment - one column | 40 40
Test Summary: | Pass Total
empty data frame corner case | 191 191
Test Summary: | Pass Total
test categorical values | 126 126
Test Summary: | Pass Total
scalar broadcasting | 3 3
Test Summary: | Pass Total
tuple broadcasting | 8 8
Test Summary: | Pass Total
scalar on assignment side | 4 4
Test Summary: | Pass Total
nothing test | 4 4
Test Summary: | Pass Total
aliasing test | 154 154
Test Summary: | Pass Total
@. test | 2 2
Test Summary: | Pass Total
test common cases | 11 11
Test Summary: | Pass Total
data frame only on left hand side broadcasting assignment | 26 26
Test Summary: | Pass Total
broadcasting with 3-dimensional object | 4 4
Test Summary: | Pass Total
additional checks of post-! broadcasting rules | 168 168
Test Summary: | Pass Total
DataFrameRow getproperty broadcasted assignment | 8 8
Test Summary: | Pass Total
make sure that : is in place and ! allocates | 10 10
Test Summary: | Pass Total
add new correct rules for df[row, col] .= v broadcasting | 12 12