mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-01-31 18:49:15 +01:00
20 lines
605 B
YAML
20 lines
605 B
YAML
language: python
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- pypy
|
|
|
|
install:
|
|
- travis_retry pip install -q flake8 pytest mock
|
|
|
|
before_script:
|
|
# stop the build if there are Python syntax errors or undefined names.
|
|
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics; fi
|
|
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide.
|
|
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics; fi
|
|
|
|
script:
|
|
- PYTHONPATH=. py.test
|