You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd test && ENABLE_DELETE_ALL_RESOLVERS=true make run && cd ..
test-start-mysql:
cd test && ENABLE_DELETE_ALL_RESOLVERS=true DATABASE_URL=mysql://root:root@localhost/test PORT=8080 go run *.go start --cors && cd ..
test-start-postgres:
cd test && ENABLE_DELETE_ALL_RESOLVERS=true DATABASE_URL=postgres://postgres@localhost:5432/test?sslmode=disable PORT=8080 go run *.go start --cors && cd ..
test-start:
cd test && make run && cd ..
test-generate:
cd test && make generate && cd ..
# test-build:
# cd test && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -o app *.go && cd ..
test-run-sqlite3:
cd test && DATABASE_URL=sqlite3://test.db make test && cd ..
test-run-postgres:
cd test && DATABASE_URL=postgres://postgres@localhost:5432/test?sslmode=disable make test && cd ..
test-run-mysql:
cd test && DATABASE_URL=mysql://root:root@localhost/test make test && cd ..
test-build-lambda:
cd test && make build-lambda-function && cd ..
test-cleanup:
docker-compose -f test/docker-compose.yml down
test-migrate-mysql:
cd test && DATABASE_URL=mysql://root:@localhost/test go run *.go migrate && cd ..