diff options
author | Valery Piashchynski <[email protected]> | 2021-07-07 12:37:24 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-07-07 12:37:24 +0300 |
commit | 127186a72d4b8d30f6ada72ade661d8713490728 (patch) | |
tree | 0a241602c1b0461c4e0535d9e4183a978b751c8d /.github | |
parent | 36bf9228e60f59f569e84822e2860980d7ed698d (diff) |
Rework test env...
Move all dockerfiles, docker-compose files into the env folder inside
the tests folder.
Add elasticmq dockerfile to build SQS compatible test env.
Add beanstalk, rabbitmq, sqs to the main tests docker-compose file.
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4679cc24..1d56e8a9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -66,7 +66,7 @@ jobs: - name: Run golang tests on Linux run: | - docker-compose -f ./tests/docker-compose.yaml up -d + docker-compose -f ./tests/env/docker-compose.yaml up -d mkdir ./coverage-ci go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage-ci/pipe.txt -covermode=atomic ./pkg/transport/pipe go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage-ci/socket.txt -covermode=atomic ./pkg/transport/socket @@ -97,7 +97,7 @@ jobs: go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage-ci/broadcast_plugin.txt -covermode=atomic ./tests/plugins/broadcast go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage-ci/websockets.txt -covermode=atomic ./tests/plugins/websockets go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage-ci/ws_origin.txt -covermode=atomic ./plugins/websockets - docker-compose -f ./tests/docker-compose.yaml down + docker-compose -f ./tests/env/docker-compose.yaml down cat ./coverage-ci/*.txt > ./coverage-ci/summary.txt - uses: codecov/codecov-action@v1 # Docs: <https://github.com/codecov/codecov-action> |