Skip to content

Commit

Permalink
Merge pull request #43 from taoistmath/DEVOPS-12019
Browse files Browse the repository at this point in the history
DEVOPS-12019: updated list of possible failures
  • Loading branch information
taoistmath committed Jan 25, 2019
2 parents 7ad5b65 + 1201192 commit 4e9354e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Expand Up @@ -4,7 +4,9 @@ python:
- "2.7"
install:
- pip install -r tests/requirements.txt
- pip install coveralls
- pip install pycparser==2.18
- pip install idna==2.6
- pip install coveralls==1.2.0
script:
- coverage run --source . setup.py nosetests
after_success:
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Expand Up @@ -3,3 +3,4 @@ boto3
pyaml
troposphere[policy]==2.0.2
redis
cryptography==2.1.4
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -23,7 +23,7 @@ def get_cmdclass(needs_install):

setup(
name="salt-sit",
version="0.0.2",
version="0.0.3",
author="Dun and Bradstreet",
author_email="sit.dandb@gmail.com",
description=('Salt Integration Testing Tool -- applies role configurations to Docker container minions using AWS (Amazon Web Services) ECS (EC2 Container Service)'),
Expand Down
3 changes: 2 additions & 1 deletion sit/launch_review_job.py
Expand Up @@ -223,7 +223,8 @@ def highstate_failed(self, result):
'Data failed to compile:',
'Pillar failed to render with the following messages:',
'Detected conflicting IDs',
'Cannot extend ID'
'Cannot extend ID',
'not available on the salt master or through a configured fileserver'
]
failures = [failure in result for failure in possible_failures]
if True not in failures:
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Expand Up @@ -4,4 +4,4 @@ boto3
pyaml
mock
troposphere==2.0.2
fakeredis
fakeredis==0.9.0

0 comments on commit 4e9354e

Please sign in to comment.