mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-04-28 19:13:48 +00:00
8 lines
153 B
Bash
Executable File
8 lines
153 B
Bash
Executable File
#!/usr/bin/env bash
|
|
TEST_UNITS=$1
|
|
cd $TEST_UNITS
|
|
bats -t $TEST_UNITS.bats
|
|
if [ -f $TEST_UNITS-security.bats ];then
|
|
bats -t $TEST_UNITS-security.bats
|
|
fi
|