-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (41 loc) · 1.64 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
matrix:
include:
- os: windows
language: shell
- os: linux
dist: xenial
sudo: true
language: python
python: '2.7'
- os: linux
dist: xenial
sudo: true
language: python
python: '3.5'
- os: linux
dist: xenial
sudo: true
language: python
python: '3.6'
- os: linux
dist: xenial
sudo: true
language: python
python: '3.7'
before_install:
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install -y python; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then export PATH="/c/Python37:/c/Python37/Scripts:$PATH"; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install jdk8 -y --version 8.0.191; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then export PATH="/c/Program Files/Java/jdk1.8.0_191/bin:$PATH"; fi
install:
- pip install -r requirements.txt
- pip install -e .
script: pytest
deploy:
provider: pypi
user: cookieshake
password:
secure: sOBulYagDEabtmVBLTDoKfUoEf/cPEAavzrhhZKLjd1LyjNfjeGTH0luepOELGnEIz0dJMkea9ofAm2XeVbDSJlPTv1n74aCAQTXAJsuTDsimimzD98u+ODiPeO6fQzyUKoj0NFinjWmk6GTBcsfN9eAbZi29U7rl7Dtc+pSaaoa/genJOiWoIjsr5c1fN8ErZwj95holhdTdauDqxyTX/iOVLvESKj+XCZzdgstLaRcAPVLGQLr3DpmB63F0ptlfgrUKJuED3GQnxOTMkZ1tB7SswJXi0vZ3xjN2d1YKl293A61ZtXao/TSDfe82w8Nyo/8uGRryUa2SpWQZXbz6U12zBBxlOPAXz++eBK3Nob32m1uGFckAZ0ApWOJzIZaGKNiTGbWwtipZDXlnVzu5PciesPjD8ifGR4siW/uGxel5TocusWtlQ3x50znQ9dNA0P96S9jGWKgqMtCLITE6tSyTiBs0MAhvFechsf6li9pu4AqgbM+qUZIaEz3rIZw52RjpjFCilvaJlwElGjMIJZQgA7+dzZHpuEtLwYIqwcM69RaPGdVMQuuBuipYVALpjheG9Pc/1R+0CmNcMKeONqScuI59NUMVRT1KGyIvYILWlmub6iXWn75n1WusSJPJxw4Ak+KDqlL5cbIh0FAAouvBh1lTIQB7wc9Bnvas9c=
on:
tags: true
python: '3.7'