mirror of
https://github.com/sstent/sublime-text-3.git
synced 2026-01-31 09:32:01 +00:00
12 lines
209 B
YAML
12 lines
209 B
YAML
language: python
|
|
python:
|
|
- "3.3"
|
|
# command to install dependencies
|
|
install:
|
|
- pip install flake8
|
|
- pip install pep257
|
|
# command to run tests
|
|
script:
|
|
- flake8 *.py --max-line-length=120
|
|
- pep257 *.py
|