ethersphere / helm-charts

Helm charts to deploy Swarm and Geth
6 stars 4 forks source link

Add chart that periodically runs tests against the swarm codebase #56

Closed skylenet closed 5 years ago

skylenet commented 5 years ago

Issue: https://github.com/ethersphere/go-ethereum/issues/1236

This chart is used to execute go tests against the swarm codebase.

A cronjob will be created and will fetch whatever version you define and execute tests against the codebase.

Have a look at the values.yaml file to check the default values. You can easily set the version and the command that you want to use for testing. See the example below:

test:
  config:
    # Version to be used (branch, commit hash, tag)
    version: master
    # Test command to execute
    command: go test -v ./swarm/... -longrunning true