PowerShell/pester.sh

11 lines
322 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2016-02-01 22:10:39 +01:00
./bin/powershell --noprofile -c "Invoke-Pester test/powershell/$1 -OutputFile pester-tests.xml -OutputFormat NUnitXml -EnableExit"
failed_tests=$?
# XML files are not executable
chmod -x pester-tests.xml
2016-02-03 23:13:38 +01:00
# Return number of failed tests as exit code (more than 0 will be an error)
exit $failed_tests