black/.travis.yml
2018-03-26 00:49:21 -07:00

21 lines
522 B
YAML

sudo: false
language: python
cache: pip
before_script:
- pip install coverage coveralls flake8 flake8-bugbear mypy
- pip install -e .
script:
- coverage run tests/test_black.py
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then mypy black.py tests/test_black.py; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.6-dev' ]]; then flake8 black.py tests/test_black.py; fi
after_success:
- coveralls
notifications:
on_success: change
on_failure: always
matrix:
include:
- python: 3.6
- python: 3.6-dev
- python: 3.7-dev