We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcb6175 commit 3c79785Copy full SHA for 3c79785
turso-test-runner/Makefile
@@ -16,7 +16,7 @@ endif
16
TURSODB := $(ROOT_DIR)/target/$(TARGET_DIR)/tursodb
17
TEST_RUNNER := ./target/$(TARGET_DIR)/turso-test-runner
18
19
-.PHONY: all build build-tursodb build-runner check run test test-sqlite clean
+.PHONY: all build build-tursodb build-runner check run test run-examples test-sqlite clean
20
21
# Build everything
22
all: build
@@ -61,6 +61,10 @@ run-tests: build
61
run-turso-tests: build
62
$(TEST_RUNNER) run turso-tests --binary $(TURSODB)
63
64
+# Run example tests
65
+run-examples: build
66
+ $(TEST_RUNNER) run examples --binary $(TURSODB)
67
+
68
# Run tests against SQLite
69
test-sqlite: build-runner
70
$(TEST_RUNNER) run tests --binary $(SQLITE)
0 commit comments