1
0
mirror of https://github.com/joohoi/acme-dns.git synced 2025-01-12 15:57:51 +07:00
acme-dns/run_tests.sh
Joona Hoikkala 41b2ff5940 Use iris v6 and Go 1.8+ ()
* Quick fixes to bring framework up to date

* Script for test running, api tests need complete rewrite

* Removed govendor from tests

* Fix for AutoTLS
2017-08-02 19:25:27 +03:00

8 lines
175 B
Bash
Executable File

#!/bin/sh
# go test doesn't play well with noexec /tmp
sudo mkdir /gotmp
sudo mount tmpfs -t tmpfs /gotmp
TMPDIR=/gotmp go test -v -race
sudo umount /gotmp
sudo rm -rf /gotmp