This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathMakefile
74 lines (57 loc) · 2.73 KB
/
Makefile
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
SHELL := /usr/bin/env bash
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/%.feature,acceptance/testdata/%.feature.tokens,$(GOOD_FEATURE_FILES))
ASTS = $(patsubst ../testdata/%.feature,acceptance/testdata/%.feature.ast.ndjson,$(GOOD_FEATURE_FILES))
PICKLES = $(patsubst ../testdata/%.feature,acceptance/testdata/%.feature.pickles.ndjson,$(GOOD_FEATURE_FILES))
SOURCES = $(patsubst ../testdata/%.feature,acceptance/testdata/%.feature.source.ndjson,$(GOOD_FEATURE_FILES))
ERRORS = $(patsubst ../testdata/%.feature,acceptance/testdata/%.feature.errors.ndjson,$(BAD_FEATURE_FILES))
PYTHON_FILES = $(shell find . -name "*.py")
PYTHONPATH ?= $(PWD)
export PYTHONPATH
.DELETE_ON_ERROR:
default: .built .compared
.PHONY: all
.compared: $(TOKENS) $(ASTS) $(PICKLES) $(ERRORS) $(SOURCES)
touch $@
.built: gherkin/parser.py gherkin/gherkin-languages.json $(PYTHON_FILES) bin/gherkin .pipped
$(MAKE) test
touch $@
.PHONY: test
test: gherkin/parser.py
# "pytest" is most likely installed in $(HOME)/.local/bin since normal
# site-packages most likely is not writeable
@echo "$(@): USE PYTHONPATH=$(PYTHONPATH)"
PATH=$(PATH):$(HOME)/.local/bin pytest
.pipped:
pip install -r requirements.txt
touch $@
acceptance/testdata/%.feature.tokens: ../testdata/%.feature ../testdata/%.feature.tokens
mkdir -p $(@D)
bin/gherkin-generate-tokens $< > $@
diff --unified $<.tokens $@
acceptance/testdata/%.feature.ast.ndjson: ../testdata/%.feature ../testdata/%.feature.ast.ndjson
mkdir -p $(@D)
bin/gherkin --no-source --no-pickles $< | jq --sort-keys --compact-output "." > $@
diff --unified <(jq "." $<.ast.ndjson) <(jq "." $@)
acceptance/testdata/%.feature.pickles.ndjson: ../testdata/%.feature ../testdata/%.feature.pickles.ndjson
mkdir -p $(@D)
bin/gherkin --no-source --no-ast $< | jq --sort-keys --compact-output "." > $@
diff --unified <(jq "." $<.pickles.ndjson) <(jq "." $@)
acceptance/testdata/%.feature.source.ndjson: ../testdata/%.feature ../testdata/%.feature.source.ndjson
mkdir -p $(@D)
bin/gherkin --no-ast --no-pickles $< | jq --sort-keys --compact-output "." > $@
diff --unified <(jq "." $<.source.ndjson) <(jq "." $@)
acceptance/testdata/%.feature.errors.ndjson: ../testdata/%.feature ../testdata/%.feature.errors.ndjson
mkdir -p $(@D)
bin/gherkin --no-source $< | jq --sort-keys --compact-output "." > $@
diff --unified <(jq "." $<.errors.ndjson) <(jq "." $@)
clean:
rm -rf .compared .built .pipped acceptance
.PHONY: clean
clobber: clean
rm -rf gherkin/parser.py
.PHONY: clobber
gherkin/parser.py: gherkin-python.razor gherkin.berp
$(berp-generate-parser)
include default.mk