forked from Azure/azure-uamqp-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
48 lines (48 loc) · 1.23 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
37
38
39
40
41
42
43
44
45
46
47
48
language: python
cache: pip
dist: xenial
matrix:
include:
- os: linux
python: "2.7"
dist: trusty
env: UAMQP_ENV=LINUX27
script:
- pytest
- python ./setup.py check -r -s
- pylint --extension-pkg-whitelist=uamqp.c_uamqp --ignore=async_ops,cbs_auth_async.py uamqp
- os: linux
python: "3.5"
env: UAMQP_ENV=LINUX35
script:
- pytest
- python ./setup.py check -r -s
- pylint --extension-pkg-whitelist=uamqp.c_uamqp uamqp
- os: linux
python: "3.6"
env: UAMQP_ENV=LINUX36
script:
- pytest
- python ./setup.py check -r -s
- pylint --extension-pkg-whitelist=uamqp.c_uamqp uamqp
- os: linux
python: "3.7"
env: UAMQP_ENV=LINUX37
script:
- pytest
- python ./setup.py check -r -s
- pylint --extension-pkg-whitelist=uamqp.c_uamqp uamqp
- os: linux
python: "3.8"
env: UAMQP_ENV=LINUX38
script:
- pytest
- python ./setup.py check -r -s
- pylint --extension-pkg-whitelist=uamqp.c_uamqp uamqp
sudo: required
services:
- docker
install:
- pip install -r dev_requirements.txt
- python ./setup.py build_ext --inplace
- pip install -e .