Skip to content

Commit

Permalink
Fix travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
mmourafiq committed Jul 18, 2019
1 parent e37ac2c commit b379a53
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion polyaxon/polypod/dockerizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@


class DockerizerSpawner(K8SManager):
SECRET_MOUNT_PATH = '/root/.docker'
SECRET_MOUNT_PATH = '/root/.docker' # noqa

def __init__(self,
project_name,
Expand Down
2 changes: 1 addition & 1 deletion polyaxon/polypod/kaniko.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class KanikoSpawner(DockerizerSpawner):
SECRET_MOUNT_PATH = '/kaniko/.docker'
SECRET_MOUNT_PATH = '/kaniko/.docker' # noqa

@staticmethod
def get_job_docker_image(job_docker_image):
Expand Down
1 change: 1 addition & 0 deletions tests/test_plugins/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1424,6 +1424,7 @@ def setUp(self):
self.object.user.username,
self.object.name)
self.queryset = self.model_class.objects.all()
conf.clear_cache()

def test_stop_serverless(self):
data = {}
Expand Down

0 comments on commit b379a53

Please sign in to comment.