forked from Meituan-Dianping/lyrebird-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
29 lines (28 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
jobs:
include:
- stage: unit test
language: python
catch: pip
python:
- "3.6"
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install .
# command to run tests
script: pytest
- stage: release to pypi
if: type = push
language: python
catch: pip
python:
- "3.6"
script:
- echo "Skipping tests"
deploy:
provider: pypi
user: YurRee
password:
secure: "wogC5Fw8UctMB/rOjEtqrs3P4FKCAK1yp1+i1f3cDZ7ayVykt0wFUJzpioCzG/ZaBUd0Uk9dFLaGjQRTWCpNMbsozB2fEjb09/0crktEyeEz8h11F/4FO9H8O0xDX3AGhEE8HS5Cw8JY1UcHbNrGv6d2ft/GTirpqt0p5ZPKYLf0Awo/N8w9rNLQlscn4rg/Scc0iYdJcANVSJXWaxsEEM93RWNTTzdsIlhGIGnA3KLLbtrDIGh77OEpo2CaQhfAvJ0s7KgciIp2guOp/5ySWCWcf8sDSy6/2DoIHpFvfQ1esJi5ERQL618fcO5gB8hQ9Dz54mbF7DBVq4xrsJ+0qG66eqqHMISKwRhSdbgvoB/Hv4aJrUpSvtqy56Yrm5/QLIXX2T+k6CAil10mthqwnOS5H6iCaj9Z7qq03gmW4DhZ1Xs4u4N19UThTeB4BENGOk1nDsBukBMzGbUbT4XbyO7NewqP0tQ89JKLnJFwmtRLAyW+qfXF1P07wt3sORWk5KhzhP0H8nzdfjkAK2UUO7BEctbLy/AzX1HJ1VPr7oaZfoEfuUUP0tQQSzYH1WtF2onbReMA69ypacxCUnCDxsspfLQvlOWDBrg4xs5UUBUTOt0dh2nsuVZCEnwlDB8mK5mnt8PP2wnI/vY9St+9W4aHoX+pgFmMwOnVWY03w3Y="
on:
tags: true