Skip to content

Commit 100cf46

Browse files
author
Chris Park
committed
Fixed coding per pep8 check
1 parent 6ff9412 commit 100cf46

File tree

4 files changed

+119
-62
lines changed

4 files changed

+119
-62
lines changed

.travis.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,6 @@ install:
33
- pip install tox
44
script:
55
- tox
6-
# Handle git submodules yourself
7-
git:
8-
submodules: false
9-
# Use sed to replace the SSH URL with the public URL, then initialize submodules
10-
before_install:
11-
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
12-
- git submodule update --init --recursive
136

147
notifications:
158
slack:

docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ RUN mkdir /install && \
4040
ln -s /install/pypy3-*/bin/pypy3 /usr/local/bin/pypy3
4141

4242
RUN pip install -U pip && pip install tox
43+
RUN pip install --upgrade autopep8
4344

4445
# copy over the necessary files
4546
COPY run_python.sh /python-dev/run_python.sh
@@ -50,4 +51,4 @@ WORKDIR /python-dev
5051
# allow interactive bash inside docker container
5152
CMD ./run_python.sh $API_KEY $FILENAME $ALT_URL $GIT_USERNAME $VERSION
5253

53-
VOLUME ["/source"]
54+
VOLUME ["/source"]

docker/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ envlist = py26, py27, py33, py34
99

1010
[testenv]
1111
commands =
12-
py.test {toxinidir}/tests -s
12+
py.test {toxinidir}/tests -s --pep8
1313
deps =
1414
pytest
1515
pytest-pep8

0 commit comments

Comments
 (0)