From e5dad4cea1db2016728a2993b6168defbd33a440 Mon Sep 17 00:00:00 2001 From: "M.P. Korstanje" Date: Tue, 8 Nov 2022 15:55:02 +0100 Subject: [PATCH] python: Enable markdown acceptance tests --- python/Makefile | 4 ++-- testdata/good/datatables.feature.md.tokens | 0 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 testdata/good/datatables.feature.md.tokens diff --git a/python/Makefile b/python/Makefile index 76db3bf94..2e2316f88 100644 --- a/python/Makefile +++ b/python/Makefile @@ -8,8 +8,8 @@ SOURCE_FILES = $(shell find . -name "*.py" | grep -v $(GHERKIN_PARSER)) GHERKIN = bin/gherkin GHERKIN_GENERATE_TOKENS = bin/gherkin-generate-tokens -GOOD_FEATURE_FILES = $(shell find ../testdata/good -name "*.feature") -BAD_FEATURE_FILES = $(shell find ../testdata/bad -name "*.feature") +GOOD_FEATURE_FILES = $(shell find ../testdata/good -name "*.feature" -o -name "*.feature.md") +BAD_FEATURE_FILES = $(shell find ../testdata/bad -name "*.feature" -o -name "*.feature.md") TOKENS = $(patsubst ../testdata/%,acceptance/testdata/%.tokens,$(GOOD_FEATURE_FILES)) ASTS = $(patsubst ../testdata/%,acceptance/testdata/%.ast.ndjson,$(GOOD_FEATURE_FILES)) diff --git a/testdata/good/datatables.feature.md.tokens b/testdata/good/datatables.feature.md.tokens new file mode 100644 index 000000000..e69de29bb