08e6991697
Change-Id: Ib4b9b5a91b7cfce8241b7ad641bb0b959344dc2a
15 lines
270 B
YAML
15 lines
270 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "pypy"
|
|
install:
|
|
- pip install flake8 --use-mirrors
|
|
- pip install nose mock --use-mirrors
|
|
- pip install -q . --use-mirrors
|
|
before_script:
|
|
- flake8 stevedore setup.py
|
|
script: nosetests stevedore
|