Skip to content

Commit dcde92e

Browse files
committed
chore: automatically pull submodule for e2e make target
Signed-off-by: Federico Bond <[email protected]>
1 parent 2bcf09c commit dcde92e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ else
1818
$(VENV); pytest
1919
endif
2020

21+
test-harness:
22+
git submodule update --init
23+
2124
.PHONY: lint
2225
lint: .venv
2326
$(VENV); black .
@@ -30,8 +33,8 @@ clean:
3033
@find -iname "*.pyc" -delete
3134

3235
.PHONY: e2e
33-
e2e: .venv
36+
e2e: .venv test-harness
3437
# NOTE: only the evaluation feature is run for now
3538
cp test-harness/features/evaluation.feature tests/features/
36-
behave tests/features/
39+
$(VENV); behave tests/features/
3740
rm tests/features/*.feature

0 commit comments

Comments
 (0)