Skip to content

Commit

Permalink
Additional cleanup for shippable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Smith committed Mar 18, 2015
1 parent f92cc71 commit 3d98e8a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion tests/aciphysobject_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@
# under the License.
#
from acitoolkit.acisession import Session
from credentials import *
try:
from credentials import *
except ImportError:
URL = ''
LOGIN = ''
PASSWORD = ''
from acitoolkit.acitoolkit import *
from acitoolkit.aciphysobject import *
import sys
Expand Down
2 changes: 1 addition & 1 deletion tests/acitoolkit_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import random
try:
from credentials import *
except:
except ImportError:
URL = ''
LOGIN = ''
PASSWORD = ''
Expand Down

0 comments on commit 3d98e8a

Please sign in to comment.