mirror of
https://github.com/vale981/clay
synced 2025-03-04 09:11:37 -05:00
15 lines
256 B
YAML
15 lines
256 B
YAML
language: python
|
|
matrix:
|
|
include:
|
|
- python: 2.7
|
|
env: TOXENV=py27
|
|
- python: 3.6
|
|
env: TOXENV=py36
|
|
before_install:
|
|
- "sudo apt-get update"
|
|
- "sudo apt-get install python-gi python3-gi"
|
|
install:
|
|
- "pip install tox radon"
|
|
script:
|
|
- "tox"
|
|
|