-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (41 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# This file is part of Dictnodefinder.
#
# Copyright (C) 2020, Aminah Nuraini.
#
# Dictnodefinder is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more
# details.
sudo: false
language: python
cache:
- pip
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
matrix:
include:
- python: "3.7"
os: linux
dist: xenial
before_install:
- "travis_retry pip install --upgrade pip setuptools py"
- "travis_retry pip install twine wheel coveralls requirements-builder"
install:
- "travis_retry pip install -e .[all]"
script:
- "./run-tests.sh"
after_success:
- coveralls
notifications:
email: false
deploy:
provider: pypi
user: vionemc
password:
secure: tntrBrJuE3sqJcLxxbzPGj6zltrP/7GgSOFt7q/wn20JWc1SHhutkFqzO2DMShT4YZBlCwwL4jCLsVdMtARCsBIh/p2glTDLFAKC7DfSqwzsnGk/6Q5uyB7NOn7/GPXItyGEJB8cb6QgsMlpMCqv7+mjrL8+HhWVCaZz4B9lzeY=
distributions: "sdist bdist_wheel"
on:
tags: true
repo: vionemc/dictnodefinder