mirror of
https://github.com/gomods/athens
synced 2026-02-10 12:18:12 +00:00
* Make it easier to run all the same commands that Travis does * Add target to install dev tools * Dirty a temp directory instead of the repo root * Explain our new make targets * Set a TMPDIR on travis * Fix comment
8 lines
180 B
Bash
Executable File
8 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# test_unit.sh
|
|
# Run the unit tests with the race detector and code coverage enabled
|
|
set -xeuo pipefail
|
|
|
|
go test -race -coverprofile cover.out -covermode atomic ./...
|