d05bcea552
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
14 lines
259 B
YAML
14 lines
259 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
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
|