We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3644abb commit d340081Copy full SHA for d340081
.travis.yml
@@ -58,11 +58,12 @@ install:
58
- pip install codecov
59
60
# Run flake8, isort, check docs & tests
61
+# TODO: Re-enable isort once #85 has been resolved
62
script:
63
- >
64
if [[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]]; then
65
flake8 . || travis_terminate 1;
- isort -rc -c . || (isort -rc -df . && return 1) || travis_terminate 1;
66
+ #isort -rc -c . || (isort -rc -df . && return 1) || travis_terminate 1;
67
fi
68
- python setup.py checkdocs
69
- py.test --cov-config .coveragerc --cov=saltyrtc.server --loop=$EVENT_LOOP --timeout=$TIMEOUT
0 commit comments