Update TravisCI settings for build

This commit is contained in:
Josh Krawczyk 2020-02-12 11:37:52 -05:00
parent 3442371d3b
commit b27e055445
2 changed files with 6 additions and 0 deletions

View File

@ -48,4 +48,6 @@ SALT_USERNAME = "changeme"
SALT_PASSWORD = "changeme"
MESH_USERNAME = "changeme"
MESH_SITE = "https://mesh.example.com"
REDIS_HOST = "localhost"
SALT_HOST = "127.0.0.1"
TWO_FACTOR_OTP = "changeme"

View File

@ -153,6 +153,8 @@ if 'TRAVIS' in os.environ:
SALT_PASSWORD = "travis"
MESH_USERNAME = "travis"
MESH_SITE = "https://example.com"
REDIS_HOST = "localhost"
SALT_HOST = "127.0.0.1"
TWO_FACTOR_OTP = "TRAVIS"
if 'AZPIPELINE' in os.environ:
@ -197,4 +199,6 @@ if 'AZPIPELINE' in os.environ:
SALT_PASSWORD = "pipeline"
MESH_USERNAME = "pipeline"
MESH_SITE = "https://example.com"
REDIS_HOST = "localhost"
SALT_HOST = "127.0.0.1"
TWO_FACTOR_OTP = "ABC12345"