Skip to content

Commit b58cb38

Browse files
committed
Changed DEIS_SERVER import error to a warning message.
1 parent a531dbc commit b58cb38

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

client/tests/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
try:
1919
DEIS_SERVER = os.environ['DEIS_SERVER']
2020
except KeyError:
21-
raise EnvironmentError(
22-
'Environment variable DEIS_SERVER must point to a Deis controller URL.')
21+
DEIS_SERVER = None
22+
print 'Error: env var DEIS_SERVER must point to a Deis controller URL.'
2323
DEIS_TEST_FLAVOR = os.environ.get('DEIS_TEST_FLAVOR', 'ec2-us-west-2')
2424
REPOSITORIES = {
2525
'Clojure': 'https://github.com/opdemand/example-clojure-ring.git',

0 commit comments

Comments
 (0)