14 lines
209 B
YAML
14 lines
209 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "pypy"
|
|
before_install:
|
|
- "sudo apt-get update -qq"
|
|
- "sudo apt-get install -y xvfb"
|
|
script:
|
|
- "python -m unittest discover"
|