I'm writing a module which has unit tests that require a certain external server program to be running, and, if it is, the hostname and port need to be known.
I would like to prompt for this information when running the test suite, and skip those tests if the user declines to provide it.
What's the best way to handle this?
Thanks