mirror of
https://github.com/vale981/releases
synced 2025-03-05 09:41:42 -05:00
15 lines
309 B
YAML
15 lines
309 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.3"
|
|
- "pypy"
|
|
install:
|
|
- pip install -r dev-requirements.txt
|
|
script:
|
|
# Primary test suite
|
|
- inv test
|
|
# Integration-level test suite (hard to reliably test full stack in-code :()
|
|
- inv test -o --tests=integration
|
|
# Docs sanity check
|
|
- inv docs
|