Files
crayons/.travis.yml
T
2019-10-09 15:32:02 -03:00

17 lines
317 B
YAML

language: python
python:
- 2.7
- 3.5
- 3.6
- 3.7
- 3.8-dev
install:
- python -m pip install colorama flake8
- if [[ $(python -c "import sys; print(sys.version_info >= (3,5,))") == "True" ]]; then pip install flake8-bugbear; fi
script:
- flake8
- python test_crayons.py
- python setup.py install