Skip to content

Commit 2a3eac3

Browse files
committed
#302 Fix GetDatastoreInfo issue - 2
1 parent a62cfb1 commit 2a3eac3

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/go-test-darwin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [pull_request, workflow_dispatch]
55
env:
66
DYLD_LIBRARY_PATH: /opt/senzing/g2/lib:/opt/senzing/g2/lib/macos
77
LD_LIBRARY_PATH: /opt/senzing/g2/lib:/opt/senzing/g2/lib/macos
8-
SENZING_TOOLS_DATABASE_URL: "sqlite3://na:na@nowhere/tmp/sqlite/G2C.db"
8+
SENZING_TOOLS_DATABASE_URL: sqlite3://na:na@nowhere/tmp/sqlite/G2C.db
99

1010
permissions:
1111
contents: read

.github/workflows/go-test-linux.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push]
55
env:
66
LD_LIBRARY_PATH: /opt/senzing/g2/lib
77
SENZING_LOG_LEVEL: TRACE
8-
SENZING_TOOLS_DATABASE_URL: "sqlite3://na:na@nowhere/tmp/sqlite/G2C.db"
8+
SENZING_TOOLS_DATABASE_URL: sqlite3://na:na@nowhere/tmp/sqlite/G2C.db
99

1010
permissions:
1111
contents: read

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ GO_ARCH = $(word 2, $(GO_OSARCH))
4141
DOCKER_IMAGE_TAG ?= $(GIT_REPOSITORY_NAME):$(GIT_VERSION)
4242
GOBIN ?= $(shell go env GOPATH)/bin
4343
LD_LIBRARY_PATH ?= /opt/senzing/g2/lib
44-
SENZING_TOOLS_DATABASE_URL ?= "sqlite3://na:na@nowhere/tmp/sqlite/G2C.db"
44+
SENZING_TOOLS_DATABASE_URL ?= sqlite3://na:na@nowhere/tmp/sqlite/G2C.db
4545

4646
# Export environment variables.
4747

makefiles/linux.mk

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# -----------------------------------------------------------------------------
66

77
LD_LIBRARY_PATH ?= /opt/senzing/g2/lib
8-
SENZING_TOOLS_DATABASE_URL ?= "sqlite3://na:na@nowhere/tmp/sqlite/G2C.db"
8+
SENZING_TOOLS_DATABASE_URL ?= sqlite3://na:na@nowhere/tmp/sqlite/G2C.db
99
PATH := $(MAKEFILE_DIRECTORY)/bin:/$(HOME)/go/bin:$(PATH)
1010

1111
# -----------------------------------------------------------------------------
@@ -80,7 +80,8 @@ setup-osarch-specific:
8080
.PHONY: test-osarch-specific
8181
test-osarch-specific:
8282
$(info $(SENZING_TOOLS_DATABASE_URL))
83-
@go test -json -v -p 1 ./... 2>&1 | tee /tmp/gotest.log | gotestfmt
83+
# @go test -json -v -p 1 ./... 2>&1 | tee /tmp/gotest.log | gotestfmt
84+
@go test -json -v -p 1 ./...
8485

8586
# -----------------------------------------------------------------------------
8687
# Makefile targets supported only by this platform.

0 commit comments

Comments
 (0)