Given that PEP 0414 was only implemented on 3.3, Python 3 of version 3.2 and prior is not supported, as it would be cumbersome to add, and 3.2 is used by few anyway.
13 lines
210 B
YAML
13 lines
210 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
# command to install dependencies
|
|
install:
|
|
- "pip install pyfakefs"
|
|
- "python setup.py install"
|
|
# command to run tests
|
|
script: nosetests
|