- make all code conform to pep8 once more - add a unit test to check for pep8 compliance - delete old ez_setup
11 lines
198 B
YAML
11 lines
198 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -U setuptools
|
|
- pip install -U pycodestyle
|
|
- pip install .
|
|
# command to run tests
|
|
script: nosetests
|