mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
* stub out a test framework for fbsql * Introduce fbsql integration test framework. This also adds support for `pset location` to set the geo location (i.e. time zone) in which timestamps should be displayed. And it adds support for comments (lines starting with `--`) in the line reader/splitter. * Replace Stdin and Stderr with setters and un-export them
15 lines
305 B
Makefile
15 lines
305 B
Makefile
.PHONY: test testv test-integration testv-integration
|
|
|
|
GO=go
|
|
|
|
test:
|
|
$(GO) test ./... -short
|
|
|
|
testv:
|
|
$(GO) test -v ./... -short
|
|
|
|
test-integration:
|
|
$(GO) test . -count 1 -timeout 20m -run TestCLIIntegration/$(RUN)
|
|
|
|
testv-integration:
|
|
$(GO) test -v . -count 1 -timeout 20m -run TestCLIIntegration/$(RUN)
|