Skip to content

Commit

Permalink
Fix unused params
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravid Brown committed Dec 13, 2017
1 parent 31a3d4f commit 7ff77fa
Show file tree
Hide file tree
Showing 6 changed files with 197 additions and 205 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ ChangeLog
build
dist
venv
.idea
.idea
MANIFEST
2 changes: 1 addition & 1 deletion Dockerfile.skipper-build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From python:2.7
FROM python:2.7

COPY requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import os
import sys
from setuptools import find_packages
from distutils.core import setup

# Workaround: bdist_wheel doesn't support absolute paths in data_files
Expand All @@ -9,9 +8,9 @@
raise RuntimeError("This setup.py does not support wheels")

setup(
setup_requires = [
setup_requires=[
'pbr >= 1.9',
'setuptools >= 17.1'
],
pbr = True
pbr=True
)
2 changes: 1 addition & 1 deletion skipper/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _run_nested(fqdn_image, environment, command, interactive, name, net='host',

volumes.extend([
'%(workspace)s:%(workspace)s:rw,Z' % dict(workspace=workspace),
'/var/lib/osmosis:/var/lib/osmosis:rw,Z' % dict(workspace=workspace),
'/var/lib/osmosis:/var/lib/osmosis:rw,Z',
'/var/run/docker.sock:/var/run/docker.sock:Z',
'/opt/skipper/skipper-entrypoint.sh:/opt/skipper/skipper-entrypoint.sh:Z',
])
Expand Down
Loading

0 comments on commit 7ff77fa

Please sign in to comment.