-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.travis.yml
66 lines (63 loc) · 1.65 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
matrix:
include:
- os: osx
language: generic
before_install:
- brew update
- brew install python3
- virtualenv env -p python3
- source env/bin/activate
- os: osx
language: generic
before_install:
- brew update
- brew install python3 --HEAD
- virtualenv env -p python3
- source env/bin/activate
- os: osx
language: generic
before_install:
- brew update
- brew install python3 --devel
- virtualenv env -p python3
- source env/bin/activate
- os: linux
language: python
python: 3.4
- os: linux
language: python
python: 3.5
- os: linux
language: python
python: 3.6
script:
- python setup.py test --pytest-args "--cov=nativeconfig --cov-report=html --cov-branch --ignore=setup.py"
- python setup.py check -srm
after_success:
- flake8 nativeconfig
- codecov
- os: linux
language: python
python: 3.6-dev
- os: linux
language: python
python: 3.7-dev
- os: linux
language: python
python: nightly
install:
- python -m pip install --upgrade pip wheel setuptools
- python -m pip install -r requirements.txt
script:
- python setup.py test
- python setup.py check -srm
deploy:
provider: pypi
user: Ilya.Kulakov
password:
secure: "VlZYEwVXqGknNEfz6vCo26JWtcbXfBY0ihG+Co6PO7JQn2jEoogKEsMhi3f/rs22nlsH124AQa7bugmH1TkgBn8ODsKLZWGAQKSm9tQlYD2idsTYqCDk5bCAWpjX/RJqZZeMnDmL9BFJkaubrTfnFWdMxI1xXi/G9wC4NaSXSJc="
distributions: "sdist bdist_wheel"
on:
tags: true
branch: master
python: 3.6