-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.travis.yml
49 lines (41 loc) · 907 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © 2014 uralbash <root@uralbash.ru>
#
# Distributed under terms of the MIT license.
sudo: false
language: python
notifications:
email: "sacrud@uralbash.ru"
email: "arkadiy@bk.ru"
email: "ggift@mail.ru"
irc:
channels:
- "chat.freenode.net#sacrud"
on_success: change
on_failure: always
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
matrix:
include:
- python: "pypy"
env: NO_RSTLINT="enabled"
install:
- pip install flake8 rstcheck
- pip install -r requirements.txt
- pip install -r requirements-test.txt
- pip install -r requirements-docs.txt
- pip install .
script:
# Pytest
- py.test --cov=pyramid_sacrud --doctest-modules tests/ pyramid_sacrud/
# Styles check
- if [ -z "$NO_RSTLINT" ]; then ./test.sh; fi
after_success:
- pip install coveralls
- coveralls