ci: fix build workflow test condition

This commit is contained in:
Nicolas Giard 2022-09-08 15:26:25 -04:00 committed by GitHub
parent c8c2ca1c81
commit 31f659de55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -145,7 +145,7 @@ jobs:
exit 1
fi
echo "Running tests..."
if [ "$INPUT_IGNORE_LOWER_COVERAGE" == "true" ]; then
if [[ "x${{ github.event.inputs.ignoreLowerCoverage }}" == "xtrue" ]]; then
echo "Lower coverage failures will be ignored."
./ietf/manage.py test --settings=settings_sqlitetest --ignore-lower-coverage
else