tests: Estabilishing module for tests

For now it contains only e2e tests, but integration & functional will follow.
This commit is contained in:
Piotr Tabor
2020-09-27 00:09:38 +02:00
parent 0aab02e7b5
commit 4fb48b7c14
4 changed files with 233 additions and 1 deletions

View File

@ -98,6 +98,7 @@ function run_for_modules {
if [ -z "${USERMOD}" ]; then
run_for_module "api" "$@" "${pkg}" || return "$?"
run_for_module "." "$@" "${pkg}" || return "$?"
run_for_module "tests" "$@" "${pkg}" || return "$?"
else
run_for_module "${USERMOD}" "$@" "${pkg}" || return "$?"
fi