verifyfirst

preflight · 4 checks

I ran the test suite and it passed

A test run reported success.

Before you call it done

  1. Confirm the tests you think exist were actually collected.pytest --collect-only -q | tail -1 # compare the count against what you expectguards against NS-017
  2. Confirm the mocks still resemble the objects they stand in for.create_autospec(Real) raises on a method the real object no longer has; a bare Mock() does not.guards against NS-018
  3. Check the exit status came from the runner, not from a later command in the pipe.set -o pipefail, or read ${PIPESTATUS[@]}guards against NS-015 NS-053
  4. Check nothing swallowed a failure inside a loop.find -exec returns find's status, not the command's; use -print0 | xargs -0guards against NS-055

Plain text: /recipes.txt · all tasks