Skip to content

Commit 76687a2

Browse files
revertme: dummy test failure and error
(cherry picked from commit 90dd34f)
1 parent 434396f commit 76687a2

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

stdlib/Dates/test/accessors.jl

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module AccessorsTest
55
using Dates
66
using Test
77

8+
@test false
89
@testset "yearmonthday/yearmonth/monthday" begin
910
# yearmonthday is the opposite of totaldays
1011
# taking Rata Die Day # and returning proleptic Gregorian date

stdlib/Markdown/test/runtests.jl

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ using Test, Markdown, StyledStrings
44
import Markdown: MD, Paragraph, Header, Italic, Bold, LineBreak, insert_hlines, plain, term, html, rst, Table, Code, LaTeX, Footnote
55
import Base: show
66

7+
@test error("dummy error")
8+
79
# Basics
810
# Equality is checked by making sure the HTML output is
911
# the same – the structure itself may be different.

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ limited_worker_rss && move_to_node1("Distributed")
7878

7979
# Move LinearAlgebra and Pkg tests to the front, because they take a while, so we might
8080
# as well get them all started early.
81-
for prependme in ["LinearAlgebra", "Pkg"]
81+
for prependme in ["LinearAlgebra", "Pkg", "Dates", "Markdown"]
8282
prependme_test_ids = findall(x->occursin(prependme, x), tests)
8383
prependme_tests = tests[prependme_test_ids]
8484
deleteat!(tests, prependme_test_ids)

0 commit comments

Comments
 (0)