Skip to content

Commit 1f5c399

Browse files
committed
Stop some tests from regenerating the expected output on each run
It defeats the purpose of those tests.
1 parent bd6ccfd commit 1f5c399

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

first-line-indent/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ PANDOC ?= pandoc
55

66
test: test_latex test_html
77

8-
test_html: sample.md expected.html first-line-indent.lua
8+
test_html: sample.md first-line-indent.lua
99
@$(PANDOC) -s --lua-filter first-line-indent.lua --to=html $< \
1010
| $(DIFF) expected.html -
1111

12-
test_latex: sample.md expected.tex first-line-indent.lua
12+
test_latex: sample.md first-line-indent.lua
1313
@$(PANDOC) -s --lua-filter first-line-indent.lua --to=latex $< \
1414
| $(DIFF) expected.tex -
1515

not-in-format/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ PANDOC ?= pandoc
55

66
test: test_html test_latex
77

8-
test_html: sample.md expected.html not-in-format.lua
8+
test_html: sample.md not-in-format.lua
99
@$(PANDOC) --lua-filter not-in-format.lua --to=html $< \
1010
| $(DIFF) expected.html -
1111

12-
test_latex: sample.md expected.tex not-in-format.lua
12+
test_latex: sample.md not-in-format.lua
1313
@$(PANDOC) --lua-filter not-in-format.lua --to=latex $< \
1414
| $(DIFF) expected.tex -
1515

0 commit comments

Comments
 (0)