forked from napalm-automation/napalm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
45 lines (37 loc) · 778 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
language: python
python:
- "3.6"
- "3.7"
- "3.8-dev"
- "nightly"
stages:
- lint
- test
matrix:
include:
- stage: lint
name: Black
python: 3.6
env: TOXENV=black
- stage: lint
name: Pylama
python: 3.6
env: TOXENV=pylama
allow_failures:
- python: 3.8-dev
- python: nightly
install:
- pip install tox==3.14.0 tox-travis==0.12 coveralls==1.8.2
deploy:
provider: pypi
user: dbarroso
password:
secure: kt2RgomUtrf5zXo3CyF8B7SkolvKgALAO0s72WuMd0wTGmgOvoBlt10Vfc+G+wuVAYvW/JKdsYRceancAFyWLFgjLtNxbV4cJF2RXN956sYFSJ2VrtUiB19WuKZjX6024gMs780hC/3bdK1SDg/NAAHSR7u2cma3QgRcW6O+UG4=
distributions: "sdist bdist_wheel"
on:
tags: true
branch: master
script:
- tox
after_success:
- coveralls