go-ethereum/docker/test_entrypoint.sh
Will Meister 57f1ac2f75
Fixing Geth Tests (#6)
Fixing broken tests, skipping tests we intentionally break, and configuring CI within Github Actions
2020-05-21 14:56:39 -05:00

13 lines
305 B
Bash

#!/bin/sh
cd /go-ethereum
echo "*** Running Linter ***"
go run build/ci.go lint || { echo 'linter failed' ; exit 1; }
echo "\n*** Linter succeeded ***\n"
echo "*** Running Tests ***"
go run build/ci.go test -coverage $TEST_PACKAGES || { echo 'tests failed' ; exit 1; }
echo "\n*** Tests Passed ***\n"