-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.5.0-DEV-7206b56e94.log
1134 lines (1133 loc) · 45.8 KB
/
1.5.0-DEV-7206b56e94.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.5.0-DEV.485
Commit 7206b56e94 (2020-03-18 17:25 UTC)
Platform Info:
OS: Linux (x86_64-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 Parsers ───────────── v0.3.12
Installed DocStringExtensions ─ v0.8.1
Installed JSON ──────────────── v0.21.0
Installed Documenter ────────── v0.24.6
Updating `~/.julia/environments/v1.5/Project.toml`
e30172f5 + Documenter v0.24.6
Updating `~/.julia/environments/v1.5/Manifest.toml`
ffbed154 + DocStringExtensions v0.8.1
e30172f5 + Documenter v0.24.6
682c06a0 + JSON v0.21.0
69de0a69 + Parsers v0.3.12
2a0f44e3 + Base64
ade2ca70 + Dates
8ba89e20 + Distributed
b77e0a4c + InteractiveUtils
76f85450 + LibGit2
8f399da3 + Libdl
56ddb016 + Logging
d6f4376e + Markdown
a63ad114 + Mmap
44cfe95a + Pkg
de0858da + Printf
3fa0cd96 + REPL
9a3f8284 + Random
ea8e919c + SHA
9e88b42a + Serialization
6462fe0b + Sockets
8dfed614 + Test
cf7118a7 + UUIDs
4ec0a83e + Unicode
Testing Documenter
Status `/tmp/jl_OBZxZC/Project.toml`
ffbed154 DocStringExtensions v0.8.1
e30172f5 Documenter v0.24.6
997ab1e6 DocumenterMarkdown v0.2.0
35a29f4d DocumenterTools v0.1.5
682c06a0 JSON v0.21.0
2a0f44e3 Base64
ade2ca70 Dates
b77e0a4c InteractiveUtils
76f85450 LibGit2
56ddb016 Logging
d6f4376e Markdown
3fa0cd96 REPL
9a3f8284 Random
8dfed614 Test
4ec0a83e Unicode
Status `/tmp/jl_OBZxZC/Manifest.toml`
b99e7846 BinaryProvider v0.5.8
ffbed154 DocStringExtensions v0.8.1
e30172f5 Documenter v0.24.6
997ab1e6 DocumenterMarkdown v0.2.0
35a29f4d DocumenterTools v0.1.5
682c06a0 JSON v0.21.0
69de0a69 Parsers v0.3.12
322a6be2 Sass v0.1.0
2a0f44e3 Base64
ade2ca70 Dates
8ba89e20 Distributed
7b1f6079 FileWatching
b77e0a4c InteractiveUtils
76f85450 LibGit2
8f399da3 Libdl
56ddb016 Logging
d6f4376e Markdown
a63ad114 Mmap
44cfe95a Pkg
de0858da Printf
3fa0cd96 REPL
9a3f8284 Random
ea8e919c SHA
9e88b42a Serialization
6462fe0b Sockets
8dfed614 Test
cf7118a7 UUIDs
4ec0a83e Unicode
[ Info: Building example/make.jl
[ Info: Building mock package docs: HTMLWriter / deployment build
@quietly: success, 5527 bytes of output hidden
[ Info: Building mock package docs: HTMLWriter / local build
@quietly: success, 12742 bytes of output hidden
[ Info: Building mock package docs: MarkdownWriter
@quietly: success, 1657 bytes of output hidden
┌ Info: Skipping build: LaTeXWriter/simple
│ EXAMPLE_BUILDS =
│ 3-element Array{String,1}:
│ "markdown"
│ "html"
│ "html-local"
└ get(ENV, "DOCUMENTER_TEST_EXAMPLES", nothing) = nothing
┌ Info: Skipping build: LaTeXWriter/latex
│ EXAMPLE_BUILDS =
│ 3-element Array{String,1}:
│ "markdown"
│ "html"
│ "html-local"
└ get(ENV, "DOCUMENTER_TEST_EXAMPLES", nothing) = nothing
┌ Info: Skipping build: LaTeXWriter/latex_simple_nondocker
│ EXAMPLE_BUILDS =
│ 3-element Array{String,1}:
│ "markdown"
│ "html"
│ "html-local"
└ get(ENV, "DOCUMENTER_TEST_EXAMPLES", nothing) = nothing
[ Info: Building missingdocs/make.jl
@quietly: success, 742 bytes of output hidden
==================================================
[ Info: The following errors are expected output.
[ Info: SetupBuildDirectory: setting up build directory.
[ Info: Doctest: running doctests.
┌ Warning: Failed to evaluate `CurrentModule = NonExistantModule` in `@meta` block.
│ err = UndefVarError: NonExistantModule not defined
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:100
┌ Error: doctest failure in src/index.md:55-65
│
│ ```jldoctest
│ julia> b = 1
│ 2
│
│ julia> x
│
│ julia> x
│ ERROR: UndefVarError: x not defined
│
│ julia> x
│ ```
│
│ Subexpression:
│
│ b = 1
│
│ Evaluated output:
│
│ 1
│
│ Expected output:
│
│ 2
│
│ diff =
│ Warning: Diff output requires color.
│ 21
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
┌ Error: doctest failure in src/index.md:55-65
│
│ ```jldoctest
│ julia> b = 1
│ 2
│
│ julia> x
│
│ julia> x
│ ERROR: UndefVarError: x not defined
│
│ julia> x
│ ```
│
│ Subexpression:
│
│ x
│
│ Evaluated output:
│
│ ERROR: UndefVarError: x not defined
│
│ Expected output:
│
│
│
│ diff =
│ Warning: Diff output requires color.
│ ERROR: UndefVarError: x not defined
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
┌ Error: doctest failure in src/index.md:55-65
│
│ ```jldoctest
│ julia> b = 1
│ 2
│
│ julia> x
│
│ julia> x
│ ERROR: UndefVarError: x not defined
│
│ julia> x
│ ```
│
│ Subexpression:
│
│ x
│
│ Evaluated output:
│
│ ERROR: UndefVarError: x not defined
│
│ Expected output:
│
│
│
│ diff =
│ Warning: Diff output requires color.
│ ERROR: UndefVarError: x not defined
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
┌ Warning: invalid syntax for doctest keyword arguments in src/index.md:67-70
│ Use ```jldoctest name; key1 = value1, key2 = value2
│
│ ```jldoctest; setup
│ julia> 1+1
│ 2
│ ```
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:142
┌ Warning: invalid syntax for doctest keyword arguments in src/index.md:67-70
│ Use ```jldoctest name; key1 = value1, key2 = value2
│
│ ```jldoctest invalidkwarg1; setup
│ julia> 1+1
│ 2
│ ```
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:142
┌ Warning: invalid syntax for doctest keyword arguments in src/index.md:67-70
│ Use ```jldoctest name; key1 = value1, key2 = value2
│
│ ```jldoctest; setup == 1
│ julia> 1+1
│ 2
│ ```
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:142
┌ Warning: invalid syntax for doctest keyword arguments in src/index.md:67-70
│ Use ```jldoctest name; key1 = value1, key2 = value2
│
│ ```jldoctest invalidkwarg2; setup == 1
│ julia> 1+1
│ 2
│ ```
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:142
┌ Error: doctest failure in src/index.md:84-91
│
│ ```jldoctest; output = false
│ foo(a, b) = a * b
│ foo(2, 3)
│
│ # output
│
│ 1
│ ```
│
│ Subexpression:
│
│ foo(a, b) = a * b
│ foo(2, 3)
│
│ Evaluated output:
│
│ 6
│
│ Expected output:
│
│ 1
│
│ diff =
│ Warning: Diff output requires color.
│ 16
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
┌ Error: doctest failure in src/index.md:84-91
│
│ ```jldoctest; output = true
│ foo(a, b) = a * b
│ foo(2, 3)
│
│ # output
│
│ 1
│ ```
│
│ Subexpression:
│
│ foo(a, b) = a * b
│ foo(2, 3)
│
│ Evaluated output:
│
│ 6
│
│ Expected output:
│
│ 1
│
│ diff =
│ Warning: Diff output requires color.
│ 16
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
┌ Error: doctest failure in ~/.julia/packages/Documenter/RrEcY/test/errors/make.jl:4-7
│
│ ```jldoctest
│ julia> a = 1
│ 2
│
│ ```
│
│ Subexpression:
│
│ a = 1
│
│ Evaluated output:
│
│ 1
│
│ Expected output:
│
│ 2
│
│ diff =
│ Warning: Diff output requires color.
│ 21
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
┌ Warning: invalid doctest block in ~/.julia/packages/Documenter/RrEcY/test/errors/make.jl:0-1
│ Requires `julia> ` or `# output`
│
│ ```jldoctest
│
│ ```
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:176
[ Info: ExpandTemplates: expanding markdown templates.
┌ Warning: undefined binding 'missing_doc' in `@docs` block in src/index.md:2-4
│ ```@docs
│ missing_doc
│ ```
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:298
┌ Warning: failed to parse exception in src/index.md
│ exception = Base.Meta.ParseError("extra token \"error\" after end of expression")
└ @ Documenter.Utilities ~/.julia/packages/Documenter/RrEcY/src/Utilities/Utilities.jl:112
┌ Warning: failed to evaluate `CurrentModule = NonExistantModule` in `@meta` block in src/index.md:10-12
│ ```@meta
│ CurrentModule = NonExistantModule
│ ```
│ exception = UndefVarError: NonExistantModule not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:259
┌ Warning: failed to evaluate `Modules = [NonExistantModule]` in `@autodocs` block in src/index.md:14-16
│ ```@autodocs
│ Modules = [NonExistantModule]
│ ```
│ exception = UndefVarError: NonExistantModule not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:384
┌ Warning: '@autodocs' missing 'Modules = ...' in src/index.md:14-16
│ ```@autodocs
│ Modules = [NonExistantModule]
│ ```
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:477
┌ Warning: failed to evaluate `@eval` block in src/index.md
│ ```@eval
│ NonExistantModule
│ ```
│ exception = UndefVarError: NonExistantModule not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:500
┌ Warning: unable to get the binding for '# comment in a @docs block' in `@docs` block in src/index.md:22-24 from expression 'nothing' in module Main
│ ```@docs
│ # comment in a @docs block
│ ```
│ exception = ArgumentError: cannot convert `nothing` to a `Binding`.
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:285
[ Info: CrossReferences: building cross-references.
┌ Warning: unable to evaluate the type signature for '[`foo(x::Foo)`](@ref)' in src/index.md from expression ':(foo(x::Foo))' in module Main
│ exception = UndefVarError: Foo not defined
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:146
┌ Warning: no doc found for reference '[`UndefVarError`](@ref)' in src/index.md.
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:160
┌ Warning: unable to get the binding for '[`1`](@ref)' in src/index.md from expression '1' in module Main
│ exception = ArgumentError: cannot convert `1` to a `Binding`.
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:137
┌ Warning: unable to get the binding for '[`"strings"`](@ref)' in src/index.md from expression '"strings"' in module Main
│ exception = ArgumentError: cannot convert `"strings"` to a `Binding`.
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:137
┌ Warning: unable to parse the reference '[`foo+*bar`](@ref)' in src/index.md.
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:125
┌ Warning: unable to get the binding for '[`foo(x`](@ref)' in src/index.md from expression ':($(Expr(:incomplete, "incomplete: premature end of input")))' in module Main
│ exception = `binding` cannot understand expression `$(Expr(:incomplete, "incomplete: premature end of input"))`.
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:137
[ Info: CheckDocument: running document checks.
┌ Warning: no footnotes found for 'another' in src/index.md.
└ @ Documenter.DocChecks ~/.julia/packages/Documenter/RrEcY/src/DocChecks.jl:136
┌ Warning: no footnotes found for '2' in src/index.md.
└ @ Documenter.DocChecks ~/.julia/packages/Documenter/RrEcY/src/DocChecks.jl:136
┌ Warning: unused footnote named 'another_one' in src/index.md.
└ @ Documenter.DocChecks ~/.julia/packages/Documenter/RrEcY/src/DocChecks.jl:131
┌ Warning: footnote 'nested' has 2 bodies in src/index.md.
└ @ Documenter.DocChecks ~/.julia/packages/Documenter/RrEcY/src/DocChecks.jl:126
[ Info: Populate: populating indices.
[ Info: RenderDocument: rendering document.
[ Info: HTMLWriter: rendering HTML pages.
┌ Warning: invalid local link: unresolved path in index.md
│ link.text =
│ 1-element Array{Any,1}:
│ Markdown.Code("", "foo(x::Foo)")
│ link.url = "@ref"
└ @ Documenter.Writers.HTMLWriter ~/.julia/packages/Documenter/RrEcY/src/Writers/HTMLWriter.jl:1676
┌ Warning: invalid local link: unresolved path in index.md
│ link.text =
│ 1-element Array{Any,1}:
│ Markdown.Code("", "UndefVarError")
│ link.url = "@ref"
└ @ Documenter.Writers.HTMLWriter ~/.julia/packages/Documenter/RrEcY/src/Writers/HTMLWriter.jl:1676
┌ Warning: invalid local link: unresolved path in index.md
│ link.text =
│ 1-element Array{Any,1}:
│ Markdown.Code("", "1")
│ link.url = "@ref"
└ @ Documenter.Writers.HTMLWriter ~/.julia/packages/Documenter/RrEcY/src/Writers/HTMLWriter.jl:1676
┌ Warning: invalid local link: unresolved path in index.md
│ link.text =
│ 1-element Array{Any,1}:
│ Markdown.Code("", "\"strings\"")
│ link.url = "@ref"
└ @ Documenter.Writers.HTMLWriter ~/.julia/packages/Documenter/RrEcY/src/Writers/HTMLWriter.jl:1676
┌ Warning: invalid local link: unresolved path in index.md
│ link.text =
│ 1-element Array{Any,1}:
│ Markdown.Code("", "foo+*bar")
│ link.url = "@ref"
└ @ Documenter.Writers.HTMLWriter ~/.julia/packages/Documenter/RrEcY/src/Writers/HTMLWriter.jl:1676
┌ Warning: invalid local link: unresolved path in index.md
│ link.text =
│ 1-element Array{Any,1}:
│ Markdown.Code("", "foo(x")
│ link.url = "@ref"
└ @ Documenter.Writers.HTMLWriter ~/.julia/packages/Documenter/RrEcY/src/Writers/HTMLWriter.jl:1676
┌ Error: Bad footnote definition.
└ @ Documenter.Writers.HTMLWriter ~/.julia/packages/Documenter/RrEcY/src/Writers/HTMLWriter.jl:1590
[ Info: SetupBuildDirectory: setting up build directory.
[ Info: Doctest: running doctests.
┌ Warning: Failed to evaluate `CurrentModule = NonExistantModule` in `@meta` block.
│ err = UndefVarError: NonExistantModule not defined
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:100
┌ Error: doctest failure in src/index.md:55-65
│
│ ```jldoctest
│ julia> b = 1
│ 2
│
│ julia> x
│
│ julia> x
│ ERROR: UndefVarError: x not defined
│
│ julia> x
│ ```
│
│ Subexpression:
│
│ b = 1
│
│ Evaluated output:
│
│ 1
│
│ Expected output:
│
│ 2
│
│ diff =
│ Warning: Diff output requires color.
│ 21
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
┌ Error: doctest failure in src/index.md:55-65
│
│ ```jldoctest
│ julia> b = 1
│ 2
│
│ julia> x
│
│ julia> x
│ ERROR: UndefVarError: x not defined
│
│ julia> x
│ ```
│
│ Subexpression:
│
│ x
│
│ Evaluated output:
│
│ ERROR: UndefVarError: x not defined
│
│ Expected output:
│
│
│
│ diff =
│ Warning: Diff output requires color.
│ ERROR: UndefVarError: x not defined
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
┌ Error: doctest failure in src/index.md:55-65
│
│ ```jldoctest
│ julia> b = 1
│ 2
│
│ julia> x
│
│ julia> x
│ ERROR: UndefVarError: x not defined
│
│ julia> x
│ ```
│
│ Subexpression:
│
│ x
│
│ Evaluated output:
│
│ ERROR: UndefVarError: x not defined
│
│ Expected output:
│
│
│
│ diff =
│ Warning: Diff output requires color.
│ ERROR: UndefVarError: x not defined
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
┌ Warning: invalid syntax for doctest keyword arguments in src/index.md:67-70
│ Use ```jldoctest name; key1 = value1, key2 = value2
│
│ ```jldoctest; setup
│ julia> 1+1
│ 2
│ ```
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:142
┌ Warning: invalid syntax for doctest keyword arguments in src/index.md:67-70
│ Use ```jldoctest name; key1 = value1, key2 = value2
│
│ ```jldoctest invalidkwarg1; setup
│ julia> 1+1
│ 2
│ ```
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:142
┌ Warning: invalid syntax for doctest keyword arguments in src/index.md:67-70
│ Use ```jldoctest name; key1 = value1, key2 = value2
│
│ ```jldoctest; setup == 1
│ julia> 1+1
│ 2
│ ```
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:142
┌ Warning: invalid syntax for doctest keyword arguments in src/index.md:67-70
│ Use ```jldoctest name; key1 = value1, key2 = value2
│
│ ```jldoctest invalidkwarg2; setup == 1
│ julia> 1+1
│ 2
│ ```
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:142
┌ Error: doctest failure in src/index.md:84-91
│
│ ```jldoctest; output = false
│ foo(a, b) = a * b
│ foo(2, 3)
│
│ # output
│
│ 1
│ ```
│
│ Subexpression:
│
│ foo(a, b) = a * b
│ foo(2, 3)
│
│ Evaluated output:
│
│ 6
│
│ Expected output:
│
│ 1
│
│ diff =
│ Warning: Diff output requires color.
│ 16
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
┌ Error: doctest failure in src/index.md:84-91
│
│ ```jldoctest; output = true
│ foo(a, b) = a * b
│ foo(2, 3)
│
│ # output
│
│ 1
│ ```
│
│ Subexpression:
│
│ foo(a, b) = a * b
│ foo(2, 3)
│
│ Evaluated output:
│
│ 6
│
│ Expected output:
│
│ 1
│
│ diff =
│ Warning: Diff output requires color.
│ 16
└ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
[ Info: END of expected error output.
==================================================
[ Info: Expected error output:
┌ Error: mode == :span requires the Markdown string to parse into a Markdown.Paragraph
│ s = "!!! adm"
│ md.content =
│ 1-element Array{Any,1}:
│ Markdown.Admonition("adm", "Adm", Any[])
└ @ Documenter.Utilities ~/.julia/packages/Documenter/RrEcY/src/Utilities/Utilities.jl:640
┌ Error: mode == :single requires the Markdown string to parse into a single block
│ s = "x\n\ny"
│ md.content =
│ 2-element Array{Any,1}:
│ Markdown.Paragraph(Any["x"])
│ Markdown.Paragraph(Any["y"])
└ @ Documenter.Utilities ~/.julia/packages/Documenter/RrEcY/src/Utilities/Utilities.jl:634
┌ Error: mode == :span requires the Markdown string to parse into a single block
│ s = "x\n\ny"
│ md.content =
│ 2-element Array{Any,1}:
│ Markdown.Paragraph(Any["x"])
│ Markdown.Paragraph(Any["y"])
└ @ Documenter.Utilities ~/.julia/packages/Documenter/RrEcY/src/Utilities/Utilities.jl:634
[ Info: .. end of expected error output.
┌ Warning: linkcheck 'google.com' status: 301, redirects to http://www.google.com/.
└ @ Documenter.DocChecks ~/.julia/packages/Documenter/RrEcY/src/DocChecks.jl:222
┌ Warning: `curl -sI --proto =http,https,ftp,ftps file:///home/pkgeval/.julia/packages/Documenter/RrEcY/test/docchecks.jl --max-time 10 -o /dev/null --write-out '%{http_code} %{url_effective} %{redirect_url}'` failed:
│ exception =
│ failed process: Process(`curl -sI --proto =http,https,ftp,ftps file:///home/pkgeval/.julia/packages/Documenter/RrEcY/test/docchecks.jl --max-time 10 -o /dev/null --write-out '%{http_code} %{url_effective} %{redirect_url}'`, ProcessExited(1)) [1]
│
└ @ Documenter.DocChecks ~/.julia/packages/Documenter/RrEcY/src/DocChecks.jl:205
┌ Error: Output does not agree with reference file
│ ref: /home/pkgeval/.julia/packages/Documenter/RrEcY/test/doctests/stdouts/41.stdout
│ ------------------------------------ output ------------------------------------
│ [ Info: SetupBuildDirectory: setting up build directory.
│ [ Info: Doctest: running doctests.
│ ┌ Error: doctest failure in src/softscope.md:40-57
│ │
│ │ ```jldoctest; filter = r"Stacktrace:(\n \[[0-9]+\].*)*"
│ │ s = 0 # global
│ │ for i = 1:10
│ │ t = s + i # new local `t`
│ │ s = t # new local `s` with warning
│ │ end
│ │ s, # global
│ │ @isdefined(t) # global
│ │
│ │ # output
│ │
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ none:3
│ │ ERROR: UndefVarError: s not defined
│ │ Stacktrace:
│ │ [1] top-level scope at ./none:2
│ │ [...]
│ │ ```
│ │
│ │ Subexpression:
│ │
│ │ s = 0 # global
│ │ for i = 1:10
│ │ t = s + i # new local `t`
│ │ s = t # new local `s` with warning
│ │ end
│ │ s, # global
│ │ @isdefined(t) # global
│ │
│ │ Evaluated output:
│ │
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ ~/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:3
│ │ ERROR: UndefVarError: s not defined
│ │
│ │ Expected output:
│ │
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ none:3
│ │ ERROR: UndefVarError: s not defined
│ │ Stacktrace:
│ │ [1] top-level scope at ./none:2
│ │ [...]
│ │
│ │ diff =
│ │ Warning: Diff output requires color.
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ none:3
│ │ ~/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:3
│ │ ERROR: UndefVarError: s not defined
│ │ Stacktrace:
│ │ [1] top-level scope at ./none:2
│ │ [...]defined
│ └ @ Documenter.DocTests ~/.julia/packages/Documenter/RrEcY/src/DocTests.jl:369
│ [ Info: ExpandTemplates: expanding markdown templates.
│ [ Info: CrossReferences: building cross-references.
│ [ Info: CheckDocument: running document checks.
│ [ Info: Populate: populating indices.
│ [ Info: RenderDocument: rendering document.
│ [ Info: HTMLWriter: rendering HTML pages.
│
│ ---------------------------------- reference ----------------------------------
│ [ Info: SetupBuildDirectory: setting up build directory.
│ [ Info: Doctest: running doctests.
│ [ Info: ExpandTemplates: expanding markdown templates.
│ [ Info: CrossReferences: building cross-references.
│ [ Info: CheckDocument: running document checks.
│ [ Info: Populate: populating indices.
│ [ Info: RenderDocument: rendering document.
│ [ Info: HTMLWriter: rendering HTML pages.
│
│ ------------------------------ onormalize(output) ------------------------------
│ [ Info: SetupBuildDirectory: setting up build directory.
│ [ Info: Doctest: running doctests.
│ ┌ Error: doctest failure in {PATH}
│ │
│ │ ```jldoctest; filter = r"Stacktrace:(\n \[[0-9]+\].*)*"
│ │ s = 0 # global
│ │ for i = 1:10
│ │ t = s + i # new local `t`
│ │ s = t # new local `s` with warning
│ │ end
│ │ s, # global
│ │ @isdefined(t) # global
│ │
│ │ # output
│ │
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ none:3
│ │ ERROR: UndefVarError: s not defined
│ │ Stacktrace:\n│ {STACKTRACE}
│ │ [...]
│ │ ```
│ │
│ │ Subexpression:
│ │
│ │ s = 0 # global
│ │ for i = 1:10
│ │ t = s + i # new local `t`
│ │ s = t # new local `s` with warning
│ │ end
│ │ s, # global
│ │ @isdefined(t) # global
│ │
│ │ Evaluated output:
│ │
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ ~/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:3
│ │ ERROR: UndefVarError: s not defined
│ │
│ │ Expected output:
│ │
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ none:3
│ │ ERROR: UndefVarError: s not defined
│ │ Stacktrace:\n│ {STACKTRACE}
│ │ [...]
│ │
│ │ diff =
│ │ Warning: Diff output requires color.
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ none:3
│ │ ~/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:3
│ │ ERROR: UndefVarError: s not defined
│ │ Stacktrace:\n│ {STACKTRACE}
│ │ [...]defined
│ └ @ Documenter.DocTests {PATH}
│ [ Info: ExpandTemplates: expanding markdown templates.
│ [ Info: CrossReferences: building cross-references.
│ [ Info: CheckDocument: running document checks.
│ [ Info: Populate: populating indices.
│ [ Info: RenderDocument: rendering document.
│ [ Info: HTMLWriter: rendering HTML pages.
│
│ ---------------------------- onormalize(reference) ----------------------------
│ [ Info: SetupBuildDirectory: setting up build directory.
│ [ Info: Doctest: running doctests.
│ [ Info: ExpandTemplates: expanding markdown templates.
│ [ Info: CrossReferences: building cross-references.
│ [ Info: CheckDocument: running document checks.
│ [ Info: Populate: populating indices.
│ [ Info: RenderDocument: rendering document.
│ [ Info: HTMLWriter: rendering HTML pages.
│
│ diff =
│ Warning: Diff output requires color.
│ [ Info: SetupBuildDirectory: setting up build directory.
│ [ Info: Doctest: running doctests.
│ ┌ Error: doctest failure in {PATH}
│ │
│ │ ```jldoctest; filter = r"Stacktrace:(\n \[[0-9]+\].*)*"
│ │ s = 0 # global
│ │ for i = 1:10
│ │ t = s + i # new local `t`
│ │ s = t # new local `s` with warning
│ │ end
│ │ s, # global
│ │ @isdefined(t) # global
│ │
│ │ # output
│ │
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ none:3
│ │ ERROR: UndefVarError: s not defined
│ │ Stacktrace:\n│ {STACKTRACE}
│ │ [...]
│ │ ```
│ │
│ │ Subexpression:
│ │
│ │ s = 0 # global
│ │ for i = 1:10
│ │ t = s + i # new local `t`
│ │ s = t # new local `s` with warning
│ │ end
│ │ s, # global
│ │ @isdefined(t) # global
│ │
│ │ Evaluated output:
│ │
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ ~/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:3
│ │ ERROR: UndefVarError: s not defined
│ │
│ │ Expected output:
│ │
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ none:3
│ │ ERROR: UndefVarError: s not defined
│ │ Stacktrace:\n│ {STACKTRACE}
│ │ [...]
│ │
│ │ diff =
│ │ Warning: Diff output requires color.
│ │ ┌ Warning: Assignment to `s` in soft scope is ambiguous because a global variable by the same name exists: `s` will be treated as a new local. Disambiguate by using `local s` to suppress this warning or `global s` to assign to the existing global variable.
│ │ └ @ none:3
│ │ ~/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:3
│ │ ERROR: UndefVarError: s not defined
│ │ Stacktrace:\n│ {STACKTRACE}
│ │ [...]defined
│ └ @ Documenter.DocTests {PATH}
│ [ Info: ExpandTemplates: expanding markdown templates.
│ [ Info: CrossReferences: building cross-references.
│ [ Info: CheckDocument: running document checks.
│ [ Info: Populate: populating indices.
│ [ Info: RenderDocument: rendering document.
│ [ Info: HTMLWriter: rendering HTML pages.
│
└ @ Main.DocTestsTests ~/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:89
doctesting: Test Failed at /home/pkgeval/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:220
Expression: is_same_as_file(output, rfile("41.stdout"))
Stacktrace:
[1] (::Main.DocTestsTests.var"#23#42")(::Nothing, ::Bool, ::Array{Ptr{Nothing},1}, ::SubString{String}) at /home/pkgeval/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:220
[2] run_makedocs(::Main.DocTestsTests.var"#23#42", ::Array{String,1}, ::Array{Module,1}; kwargs::Base.Iterators.Pairs{Union{},Union{},Tuple{},NamedTuple{(),Tuple{}}}) at /home/pkgeval/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:55
[3] run_makedocs(::Function, ::Array{String,1}, ::Array{Module,1}) at /home/pkgeval/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:25 (repeats 2 times)
[4] top-level scope at /home/pkgeval/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:218
[5] top-level scope at /workspace/srcdir/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1114
[6] top-level scope at /home/pkgeval/.julia/packages/Documenter/RrEcY/test/doctests/doctests.jl:124
==================================================
[ Info: Testing `doctest = :fix`
[ Info: SetupBuildDirectory: setting up build directory.
[ Info: Doctest: running doctests.
[ Info: Skipped ExpandTemplates step (doctest only).
[ Info: Skipped CrossReferences step (doctest only).
[ Info: Skipped CheckDocument step (doctest only).
[ Info: Skipped Populate step (doctest only).
[ Info: Skipped RenderDocument step (doctest only).
WARNING: replacing module Foo.
[ Info: SetupBuildDirectory: setting up build directory.
[ Info: Doctest: running doctests.
[ Info: ExpandTemplates: expanding markdown templates.
[ Info: CrossReferences: building cross-references.
[ Info: CheckDocument: running document checks.
[ Info: Populate: populating indices.
[ Info: RenderDocument: rendering document.
[ Info: HTMLWriter: rendering HTML pages.
[ Info: Done testing `doctest = :fix`
==================================================
┌ Warning: no match for `versions` entry `"foobar"`
└ @ Documenter.Writers.HTMLWriter ~/.julia/packages/Documenter/RrEcY/src/Writers/HTMLWriter.jl:1159
┌ Warning: no match for `versions` entry `"foo" => "bar"`
└ @ Documenter.Writers.HTMLWriter ~/.julia/packages/Documenter/RrEcY/src/Writers/HTMLWriter.jl:1153
[ Info: Building Documenter's docs with Markdown.
[ Info: SetupBuildDirectory: setting up build directory.
[ Info: Doctest: running doctests.
[ Info: ExpandTemplates: expanding markdown templates.
┌ Warning: unable to get the binding for 'DocumenterTools.package_devpath' in `@docs` block in src/lib/internals/documentertools.md:3-5 from expression ':(DocumenterTools.package_devpath)' in module Main
│ ```@docs
│ DocumenterTools.package_devpath
│ ```
│ exception = UndefVarError: DocumenterTools not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:285
┌ Warning: failed to evaluate `Modules = [DocumenterTools.Generator]` in `@autodocs` block in src/lib/internals/documentertools.md:9-11
│ ```@autodocs
│ Modules = [DocumenterTools.Generator]
│ ```
│ exception = UndefVarError: DocumenterTools not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:384
┌ Warning: '@autodocs' missing 'Modules = ...' in src/lib/internals/documentertools.md:9-11
│ ```@autodocs
│ Modules = [DocumenterTools.Generator]
│ ```
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:477
┌ Warning: failed to evaluate `Modules = [DocumenterTools.Themes]` in `@autodocs` block in src/lib/internals/documentertools.md:19-21
│ ```@autodocs
│ Modules = [DocumenterTools.Themes]
│ ```
│ exception = UndefVarError: DocumenterTools not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:384
┌ Warning: '@autodocs' missing 'Modules = ...' in src/lib/internals/documentertools.md:19-21
│ ```@autodocs
│ Modules = [DocumenterTools.Themes]
│ ```
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:477
┌ Warning: unable to get the binding for 'DocumenterTools.generate' in `@docs` block in src/lib/public.md:37-40 from expression ':(DocumenterTools.generate)' in module Main
│ ```@docs
│ DocumenterTools.generate
│ DocumenterTools.genkeys
│ ```
│ exception = UndefVarError: DocumenterTools not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:285
┌ Warning: unable to get the binding for 'DocumenterTools.genkeys' in `@docs` block in src/lib/public.md:37-40 from expression ':(DocumenterTools.genkeys)' in module Main
│ ```@docs
│ DocumenterTools.generate
│ DocumenterTools.genkeys
│ ```
│ exception = UndefVarError: DocumenterTools not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:285
┌ Warning: undefined binding 'DocumenterShowcase' in `@docs` block in src/showcase.md:220-222
│ ```@docs
│ DocumenterShowcase
│ ```
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:298
┌ Warning: unable to get the binding for 'DocumenterShowcase.foo(::Integer)' in `@docs` block in src/showcase.md:241-243 from expression ':(DocumenterShowcase.foo(::Integer))' in module Main
│ ```@docs
│ DocumenterShowcase.foo(::Integer)
│ ```
│ exception = UndefVarError: DocumenterShowcase not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:285
┌ Warning: unable to get the binding for 'DocumenterShowcase.foo(::AbstractString)' in `@docs` block in src/showcase.md:252-254 from expression ':(DocumenterShowcase.foo(::AbstractString))' in module Main
│ ```@docs
│ DocumenterShowcase.foo(::AbstractString)
│ ```
│ exception = UndefVarError: DocumenterShowcase not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:285
┌ Warning: unable to get the binding for 'DocumenterShowcase.bar' in `@docs` block in src/showcase.md:259-261 from expression ':(DocumenterShowcase.bar)' in module Main
│ ```@docs
│ DocumenterShowcase.bar
│ ```
│ exception = UndefVarError: DocumenterShowcase not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:285
┌ Warning: failed to run `@example` block in src/showcase.md:318-321
│ ```@example
│ using Main: DocumenterShowcase
│ DocumenterShowcase.SVGCircle("000", "aaa")
│ ```
│ value = UndefVarError: DocumenterShowcase not defined
└ @ Documenter.Expanders ~/.julia/packages/Documenter/RrEcY/src/Expanders.jl:564
[ Info: CrossReferences: building cross-references.
┌ Warning: unable to get the binding for '[`DocumenterTools.generate`](@ref)' in src/man/guide.md from expression ':(DocumenterTools.generate)' in module Main
│ exception = UndefVarError: DocumenterTools not defined
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:137
┌ Warning: no doc found for reference '[`DocumenterShowcase`](@ref)' in src/showcase.md.
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:160
┌ Warning: unable to get the binding for '[`DocumenterShowcase.foo`](@ref)' in src/showcase.md from expression ':(DocumenterShowcase.foo)' in module Main
│ exception = UndefVarError: DocumenterShowcase not defined
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:137
┌ Warning: unable to get the binding for '[`DocumenterShowcase.bar`](@ref)' in src/showcase.md from expression ':(DocumenterShowcase.bar)' in module Main
│ exception = UndefVarError: DocumenterShowcase not defined
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:137
┌ Warning: unable to get the binding for '[`DocumenterTools.genkeys`](@ref)' in src/man/hosting.md from expression ':(DocumenterTools.genkeys)' in module Main
│ exception = UndefVarError: DocumenterTools not defined
└ @ Documenter.CrossReferences ~/.julia/packages/Documenter/RrEcY/src/CrossReferences.jl:137
[ Info: CheckDocument: running document checks.
[ Info: Populate: populating indices.
[ Info: RenderDocument: rendering document.
[ Info: MarkdownWriter: rendering Markdown pages.
[ Info: Building 'nongit' in /tmp/jl_IOauMq
[ Info: SetupBuildDirectory: setting up build directory.