mirror of
https://github.com/outbackdingo/debos.git
synced 2026-01-27 10:18:47 +00:00
The tests are first-class citizens; they should be present in the directory as such. Signed-off-by: Christopher Obbard <chris.obbard@collabora.com>
9 lines
137 B
Bash
Executable File
9 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
for dir in simple subdirs separatedirs ; do
|
|
pushd ${dir}
|
|
debos --disable-fakemachine main.yaml
|
|
popd
|
|
done
|