@@ -23,12 +23,13 @@ def pytest_addoption(parser):
2323 parser .addoption ('--env' , action = 'store' ,
2424 dest = 'environment' ,
2525 choices = (
26- constants .Environment .QA ,
27- constants .Environment .STAGING ,
28- constants .Environment .PRODUCTION ,
29- constants .Environment .MASTER ,
30- constants .Environment .LOCAL ,
31- constants .Environment .TEST ),
26+ constants .Environment .QA ,
27+ constants .Environment .STAGING ,
28+ constants .Environment .PRODUCTION ,
29+ constants .Environment .MASTER ,
30+ constants .Environment .LOCAL ,
31+ constants .Environment .TEST
32+ ),
3233 default = constants .Environment .TEST ,
3334 help = "The environment to run the tests in." )
3435 parser .addoption ('--data' , dest = 'data' ,
@@ -48,7 +49,8 @@ def pytest_addoption(parser):
4849 parser .addoption ('--database_env' , action = 'store' ,
4950 dest = 'database_env' ,
5051 choices = (
51- 'prod' , 'qa' , 'staging' , 'test' , 'local' , 'master' ),
52+ 'prod' , 'qa' , 'staging' , 'test' , 'local' , 'master'
53+ ),
5254 default = 'test' ,
5355 help = optparse .SUPPRESS_HELP )
5456 parser .addoption ('--with-s3_logging' , action = "store_true" ,
0 commit comments