forked from urduhack/urduhack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (33 loc) · 775 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
language: python
matrix:
include:
- python: 3.8
install:
- pip install --upgrade pip
- pip install -r dev-requirements.txt
- pip install .[tf]
- urduhack download
- urduhack info
script:
- pytest --cov=./
after_success:
- codecov
notifications:
slack: urduhack:HarNbK5WrXQbu9XuFLPsSFtM
webhooks:
urls:
- https://webhooks.gitter.im/e/c0df54973dfd5610d51c
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never
deploy:
skip_cleanup: true
provider: pypi
distributions: sdist bdist_wheel
on:
tags: true
branch:
- master
- /?(\d+\.)?(\d+\.)?(\*|\d+)$/
user: ${PYPI_USER}
password: ${PYPI_PASSWORD}