mirror of
https://github.com/kennethreitz/crayons.git
synced 2026-06-21 15:10:59 +00:00
17 lines
317 B
YAML
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
|