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
How should the command to run a single test via delve be like? I've tried both:
dlv --build-flags="-run ^TestHello$" test github.com/dlsniper/u/tmp/mypack --
dlv test github.com/dlsniper/u/tmp/mypack -- -run ^TestHello$
I can upload the test example if needed. Thank you!
The text was updated successfully, but these errors were encountered:
Nevermind, I've finally figured it out, I need to run something like this:
dlv test --build-flags='github.com/dlsniper/u/tmp/mypack' -- -test.run ^TestHello$
Sorry for noise
Sorry, something went wrong.
No branches or pull requests
How should the command to run a single test via delve be like? I've tried both:
dlv --build-flags="-run ^TestHello$" test github.com/dlsniper/u/tmp/mypack --
dlv test github.com/dlsniper/u/tmp/mypack -- -run ^TestHello$
but without luck (all the tests in the package run for both of them).
I can upload the test example if needed.
Thank you!
The text was updated successfully, but these errors were encountered: