slagyr / speclj

pronounced "speckle": a TDD/BDD framework for Clojure.
MIT License
459 stars 58 forks source link

Allow -a and --format=p options together #130

Closed eigenhombre closed 9 years ago

eigenhombre commented 9 years ago

Currently --format=p only works if -a is omitted. Sure'd be nice to be able to do both at once. Cheers!

thesoftwarephilosopher commented 9 years ago

@eigenhombre The -a flag is only a synonym for --reporter=documentation --runner=vigilant and --format is just an alias for --reporter, so you can accomplish what you're trying to do with --format=progress --runner=vigilant or --format=progress -r v for short. Does that work for you?

eigenhombre commented 9 years ago

@sdegutis Yes, thanks a lot!

thesoftwarephilosopher commented 9 years ago

Great, glad to hear it.

eigenhombre commented 9 years ago

I will say that this would be a good addition to the docs, particularly for people coming to Clojure from Python (and who are used to nose). Cheers!