Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleaning up little things #61

Merged
merged 2 commits into from
Sep 30, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ build-testdata:
$(MAKE) -C testdata/function build

tests: build tests-nobuild
tests-nobuild: tests-nodeps tests-redis tests-cassandra tests-mysql tests-postgres tests-boltdb tests-inmemory
tests-nobuild: tests-base tests-redis tests-cassandra tests-mysql tests-postgres tests-boltdb tests-inmemory

tests-nodeps:
tests-base:
@echo "Launching Tests in Docker Compose"
docker-compose -f dev-compose.yml up --exit-code-from tests-nodeps --build tests-nodeps
docker-compose -f dev-compose.yml up -d consul consulator
docker-compose -f dev-compose.yml up --exit-code-from tests-base --build tests-base
docker-compose -f dev-compose.yml down

tests-boltdb:
Expand Down
4 changes: 2 additions & 2 deletions dev-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ services:
- redis
- consul
- consulator
tests-nodeps:
tests-base:
image: golang:latest
working_dir: /go/src/github.com/madflojo/tarmac
entrypoint: go test -v -race -covermode=atomic -coverprofile=/tmp/coverage/coverage.out -skip "TestFullService/.*" ./...
Expand Down Expand Up @@ -246,7 +246,7 @@ services:
- 8500:8500
consulator:
image: lewispeckover/consulator
command: "import /app/tarmac-consul.yml"
command: "import /app/testdata/tarmac-consul.yml"
depends_on:
- consul
volumes:
Expand Down
3 changes: 0 additions & 3 deletions docs/wasm-functions/multi-function-services.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ The `tarmac.json` file has a simple structure that consists of a single object w

```json
{
"globals": {
"log_level": "debug"
},
"services": {
"my-service": {
"name": "my-service",
Expand Down
File renamed without changes.
Loading