Is there a way to skip doctests when running cargo from the command line.
My project tests have got too slow for my git pre-commit hook. I can avoid running some of the longer running tests with --skip
. But the doctests are actually the slowest part of test execution for me (not sure why, they are not very intense). I'd like to be able to not run them without removing them.