2020-12-17 19:37:19 +07:00
|
|
|
#!/bin/bash -e -o pipefail
|
|
|
|
|
|
|
|
|
|
invoke_tests() {
|
|
|
|
|
local TEST_FILE="$1"
|
|
|
|
|
local TEST_NAME="$2"
|
|
|
|
|
|
2021-01-11 13:30:51 +07:00
|
|
|
source $HOME/.bashrc
|
2020-12-17 19:37:19 +07:00
|
|
|
pwsh -Command "Import-Module '$HOME/image-generation/helpers/Tests.Helpers.psm1' -DisableNameChecking
|
|
|
|
|
Invoke-PesterTests -TestFile \"$TEST_FILE\" -TestName \"$TEST_NAME\""
|
|
|
|
|
}
|