This repo contains Koinos integration tests.
To run the test suite:
- Optionally, export any feature branch tags that you want to test for a microservice (e.g.
export MEMPOOL_TAG="9-bump-submodules
) - CD in to tests
- Run
run.sh
To run an individual test:
- Optionally, export any feature branch tags that you want to test for a microservice (e.g.
export MEMPOOL_TAG="9-bump-submodules
) - CD in to the test directory.
- Run
docker-compose up -d
. - Run
go test -v ./...
with an optional--timeout
(Tests should already have internal timeouts) - Cleanup with
docker-compose down