Skip a Flaky Test Use from to skip a test with a tracking issue number. Usage Ask the user for the GitHub issue number, then add the skip after the defer statements: Other Common Skip Variants The package provides several other incantations for conditional skips: - - skip only when running with race detector - - skip only when running with deadlock detector - - skip only when running under stress/duress Use these when a test is flaky only under specific conditions rather than universally broken. Notes - Issue number is an integer, not a string - Place skip call after defer statements, before…