parser.addoption("--url",dest="url",action="store",default="http://localhost:9000",help="URL for application to root")
parser.addoption("--dns-ip",dest="dns_ip",action="store",default="127.0.0.1:19001",help="The ip address for the dns name server to update")
parser.addoption("--resolver-ip",dest="resolver_ip",action="store",help="The ip address for the dns server to use for the tests during resolution. This is usually the same as `--dns-ip`")
parser.addoption("--dns-zone",dest="dns_zone",action="store",default="vinyldns.",help="The zone name that will be used for testing")
parser.addoption("--dns-key-name",dest="dns_key_name",action="store",default="vinyldns.",help="The name of the key used to sign updates for the zone")
parser.addoption("--basic-auth",dest="basic_auth_creds",help="Basic auth credentials in `user:pass` format")
parser.addoption("--basic-auth-realm",dest="basic_auth_realm",help="Basic auth realm to use with credentials supplied by `-b`")
parser.addoption("--iauth-creds",dest="iauth_creds",help="Intermediary auth in `key:secret` format")
parser.addoption("--oauth-creds",dest="oauth_creds",help="OAuth credentials in `consumer:secret` format")
parser.addoption("--environment",dest="environment",action="store",default="test",help="Environment that we are testing against")
parser.addoption("--teardown",dest="teardown",action="store",default="True",help="True to teardown the test fixture; false to leave it for another run")