-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
30 lines (26 loc) · 1.18 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
language: python
python:
#- 3.5 pandas v1 supports only Python 3.6.1 and higher
- 3.6
- 3.7
- 3.8
- 3.9
deploy:
provider: pypi
username: __token__
password:
secure: "pH3/CdsaW5xc58Qfitivr5Uy0fOt4KyNMqD3LGdEkwgcNI6/G0amPDSDdW4g2kW07cy/nBGMPePtk59oJi0C++Sa8qULhHamIPXSopB4p92XHEXHrzFpBNSjTS/mUn0zC2rBpi9DXMo2j6DtmVh7VaPgmHDf6u+i3pnxZi/GzgeV5jlfglsJOw+J+eVmXRAEqvNdlchyGPE+k5GoeNzslrDUMjqnTDq++I4zR/ftlgMpsv6hxM4aNBLTAi5pc8wlE4V4WQRoyxRaJxK1hlaqqismgkJIQUZnqLe3uJrh2b6LtCNwYFT7ZkGayYqtPs86j5P4u5cry8/Ekt5B/6hShNXpFPOzugMEJC6boLEDPkYzoJUgWDHxB48QZ6NtgrelsstYJcGY8Z5kiqWaxUlQCPLlljb9IIY8s4xD8ZnVYECCmq1m5kRmMwpDsxql8ji2//UHUHUT58XW+2p8ng7rsHSDgsgH7XZSiCi814etYh6CWQxBUrD6ld8vkYyLclLSo3PE4D+mgKdCYJmXm+LkY1jp1xE59QLABd2afXT5MFAcxDyZUusy/gcs+xMg9XRIgL3AGdnrPqlnUYEafH4yf+5pGxDt9tY5y5JJnOz0AiSpKIYrscTzz0A/hIaBnUGayUr2hes6oSVj3ZXmG5AZzKftsJWM2zazkc9k4wa7Grw="
on:
tags: true
skip_existing: true
edge: true
distributions: sdist bdist_wheel
jobs:
include:
- name: "Python on Xenial Linux"
python: 3.7
install: pip3 install --upgrade -r dev-requirements.txt
script:
- pytest --cov=vicinator ./vicinator/tests/
after_success:
- bash <(curl -s https://codecov.io/bash)