jorgenschaefer / emacs-buttercup

Behavior-Driven Emacs Lisp Testing
GNU General Public License v3.0
362 stars 44 forks source link

Do not report skipped specs #164

Closed snogge closed 4 years ago

snogge commented 4 years ago

When buttercup-silent-skipping is non-nil, do not print specs that were marked as skipped before buttercup-run was started. Also do not print the descriptions for suites that only contain such skipped specs.

Specs that are marked as skipped by assume will still be printed.

Add an option --silent-skipping to bin/buttercup.

snogge commented 4 years ago

This is an alternative implementation to #162 that still prints the output as each spec is processed. It does have the drawback that it will still print specs that are skipped by raising the buttercup-pending signal.

snogge commented 4 years ago

A better solution was merged from #184