forked from python-social-auth/social-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (36 loc) · 1 KB
/
.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
language: python
sudo: false
env:
global:
- REQUIREMENTS=requirements.txt
- TEST_REQUIREMENTS=social_core/tests/requirements.txt
python:
- "2.7"
matrix:
include:
- python: "pypy"
env:
- TEST_REQUIREMENTS=social_core/tests/requirements-pypy.txt
- python: "3.3"
env:
- REQUIREMENTS=requirements-python3.txt
- TEST_REQUIREMENTS=social_core/tests/requirements-python3.txt
- python: "3.4"
env:
- REQUIREMENTS=requirements-python3.txt
- TEST_REQUIREMENTS=social_core/tests/requirements-python3.txt
- python: "3.5"
env:
- REQUIREMENTS=requirements-python3.txt
- TEST_REQUIREMENTS=social_core/tests/requirements-python3.txt
addons:
apt:
packages:
- libxmlsec1-dev
- swig
install:
- "python setup.py -q install"
- "travis_retry pip install -r $REQUIREMENTS"
- "travis_retry pip install -r $TEST_REQUIREMENTS"
script:
- "nosetests --with-coverage --cover-package=social_core --where=social_core/tests"