We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When testing this PR I found out that none of the integration tests were being run because of this statement:
test-unit unit: stop-deps @echo @echo "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=" @echo "= Running unit tests... =" @echo "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=" @echo @env MY_IP=${MY_IP} ginkgo -r --randomizeAllSpecs --randomizeSuites --cover --focus="\[Unit\].*" . @$(MAKE) test-coverage-func @echo @echo "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=" @echo "= Unit tests finished. =" @echo "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=" @echo test-integration integration func: deps test-db-drop test-db-create @echo @echo "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=" @echo "= Running integration tests... =" @echo "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=" @echo @env MY_IP=${MY_IP} ginkgo -r --randomizeAllSpecs --randomizeSuites --skip="\[Integration\].*" . @echo @echo "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=" @echo "= Integration tests finished. =" @echo "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=" @echo
The test-integration target was skipping [Integration] instead of focusing. I changed that and run the tests again and many of them are broken.
I removed all broken tests but it would be nice to fix them
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When testing this PR I found out that none of the integration tests were being run because of this statement:
The test-integration target was skipping [Integration] instead of focusing.
I changed that and run the tests again and many of them are broken.
I removed all broken tests but it would be nice to fix them
The text was updated successfully, but these errors were encountered: