@@ -49,7 +49,7 @@ As of now, `stackql` handles `xml` SERDE through the core, and does not route th
4949
5050``` bash
5151env CGO_ENABLED=1 go build \
52- --tags " sqlite_stackql sqlite_math_functions " \
52+ --tags " sqlite_stackql" \
5353 -ldflags " -X github.com/stackql/stackql/internal/stackql/cmd.BuildMajorVersion=${BUILDMAJORVERSION:- 1} \
5454 -X github.com/stackql/stackql/internal/stackql/cmd.BuildMinorVersion=${BUILDMINORVERSION:- 1} \
5555 -X github.com/stackql/stackql/internal/stackql/cmd.BuildPatchVersion=${BUILDPATCHVERSION:- 1} \
@@ -69,7 +69,7 @@ At this time, we are not dogmatic about how to implement unit tests. Aspiration
6969To run all unit tests:
7070
7171``` bash
72- go test -timeout 1200s --tags " sqlite_stackql sqlite_math_functions " ./...
72+ go test -timeout 1200s --tags " sqlite_stackql" ./...
7373```
7474
7575### Robot tests
@@ -184,7 +184,7 @@ Requirements are [detailed in the root README](/README.md#system-requirements).
184184
185185Local testing of the application:
186186
187- 1 . Run ` go test --tags "sqlite_stackql sqlite_math_functions " ./... ` tests.
187+ 1 . Run ` go test --tags "sqlite_stackql" ./... ` tests.
1881882 . Build the executable [ as per the root README] ( /README.md#build )
1891893 . Perform registry rewrites as needed for mocking ` python3 test/python/registry-rewrite.py ` .
1901903 . Run robot tests:
@@ -203,7 +203,7 @@ Test coverage is sparse. Regressions are mitigated by `go test` integration tes
203203#### Point in time gotest coverage
204204
205205If not already done, then install 'cover' with ` go get golang.org/x/tools/cmd/cover ` .
206- Then: ` go test --tags "sqlite_stackql sqlite_math_functions " -cover ../... ` .
206+ Then: ` go test --tags "sqlite_stackql" -cover ../... ` .
207207
208208### Functional and Integration testing
209209
0 commit comments