forked from cbouvier15/python3-saml
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (22 loc) · 761 Bytes
/
.travis.yml
File metadata and controls
25 lines (22 loc) · 761 Bytes
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
language: python
python:
- '2.7.6'
# - '2.7.9'
# - '2.7.12'
# - '3.3.4'
# - '3.3.5'
# - '3.3.6'
- '3.4.3'
- '3.5.0'
install:
- sudo apt-get update -qq
- sudo apt-get install -qq swig python-dev libxml2-dev libxmlsec1-dev
- 'travis_retry pip install .'
- 'travis_retry pip install -e ".[test]"'
script:
- 'coverage run --source=src/onelogin/saml2 --rcfile=tests/coverage.rc setup.py test'
- 'coverage report -m --rcfile=tests/coverage.rc'
# - 'pylint src/onelogin/saml2 --rcfile=tests/pylint.rc'
- 'pep8 tests/src/OneLogin/saml2_tests/*.py demo-flask/*.py demo-django/*.py src/onelogin/saml2/*.py --config=tests/pep8.rc'
- 'pyflakes src/onelogin/saml2 demo-django demo-flask tests/src/OneLogin/saml2_tests'
after_success: 'coveralls'