You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
775 B

8 years ago
  1. # Tendermint Tests
  2. The unit tests (ie. the `go test` s) can be run with `make test`.
  3. The integration tests can be run wtih `make test_integrations`.
  4. Running the integrations test will build a docker container with latest tendermint
  5. and run the following tests in docker containers:
  6. - go tests, with --race
  7. - app tests
  8. - dummy app over socket
  9. - counter app over socket
  10. - counter app over grpc
  11. - p2p tests
  12. - start a local dummy app testnet on a docker network (requires docker version 1.10+)
  13. - send a tx on each node and ensure the state root is updated on all of them
  14. If on a `release-x.x.x` branch, we also run
  15. - `go test` for all our dependency libs (test/test_libs.sh)
  16. - network_testing - benchmark a mintnet based cloud deploy using netmon
  17. # Coverage
  18. TODO!