21 lines
393 B
YAML
21 lines
393 B
YAML
language: python
|
|
matrix:
|
|
include:
|
|
- python: "2.6"
|
|
- python: "2.7"
|
|
- python: "2.7.10"
|
|
- python: "2.7.11"
|
|
allow_failures:
|
|
- python: "3.2"
|
|
- python: "3.3"
|
|
- python: "3.4"
|
|
- python: "3.5"
|
|
- python: "nightly"
|
|
|
|
# command to install dependencies
|
|
install:
|
|
- pip install python-dateutil pytest
|
|
# command to run tests
|
|
script: py.test -v
|
|
|