mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 10:10:12 +00:00
11 lines
202 B
Bash
Executable File
11 lines
202 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This script will perform the functional tests for the API using Docker
|
|
#
|
|
set -euo pipefail
|
|
|
|
DIR=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
|
|
|
|
cd "$DIR/../test/api/functional"
|
|
make
|