We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b45e3 commit 725ff40Copy full SHA for 725ff40
conformance/Makefile
@@ -79,6 +79,9 @@ run-conformance-tests: ## Run conformance tests
79
--report-output=output.txt; cat output.txt" | tee output.txt
80
sed -e '1,/CONFORMANCE PROFILE/d' output.txt > conformance-profile.yaml
81
rm output.txt
82
+ $(eval result_core=$(shell cat conformance-profile.yaml | yq '.profiles[0].core.result'))
83
+ $(eval result_extended=$(shell cat conformance-profile.yaml | yq '.profiles[0].extended.result'))
84
+ [ "$(result_core)" != "failure" ] && [ "$(result_extended)" != "failure" ] || exit 2
85
86
.PHONY: cleanup-conformance-tests
87
cleanup-conformance-tests: ## Clean up conformance tests fixtures
0 commit comments