-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
29 lines (25 loc) · 1.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
language: python
sudo: false
branches:
only:
- master
python:
- 3.6
- 3.7
- 3.8
install: skip
script:
- pip install -e .
- pip install codecov pytest pytest-mock
- coverage run --source=src $(which py.test) test/
after_success:
- bash <(curl -s https://codecov.io/bash)
deploy:
provider: pypi
user: nerdwallet
password:
secure: "UV/Ua3GI2fQR1sik4I/MrU1o3fx2uoDuHRZ3P6ckLf16dHgQTtmEC6IO6VQl6UwwoqV99t5NWvw6yeAJ1zMRxiT4arnC7xsCdkFRgNsAbMnZBGjfo24O1r+CHvNOfXpWOWssgNWcjBpC3j9ZzPPQFSL90BX6Xmnvo6cApbKsACbkp5+8WD7vB87m0ZP4RvRUKq5gUFQUFjfTVt0MVcyP+bn/Q8e9cyLE4uCxp0M9IGGPe50JxAO08iNJl0AcW9Yeg2urwfjBxfkewAvWc/yPeLTIOjxtejwPvVBs4TLPljUREo/rkTpMk/YMW7UER/R+5EuBfoGKGJ61VLdbA/00zsbX/5PTcvY2lRUX8Hnx8deU0Y0p2MMILhPI2U2mZXPE4FNs3oZkbWRnjsJJbkbY4fq2PUflAhOsaxNlW/uFKWQyGaRuw5/qEA0PDyEF9AGB8y50LDlNX3coMkC+LT2gZHT7KR5do+BSSJvJOKKZz41mDQtCDqb3sef50UZBTgcyQkTF45AMfNANBwoIdxRD+dg/4ISEbzxDQYDj90nUgANGcmDi0hcGGEyxXddYegzDw640+NJDtFhE6zp7Y56SZBMU+Gbz3f+DDLb0ba2pPcI/Rqpg1Fg8qyFXoa/Cm3cGAFQSF1S5Gik1RYpDwVXuM7kDaIrDZAMO3l7d8t92IM0="
on:
branch: master
python: 3.8
distributions: "sdist bdist_wheel"