-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (34 loc) · 1.39 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
# Config file for automatic testing at travis-ci.com
language: python
python:
- 3.8
- 3.7
- 3.6
# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -U tox-travis
script:
- tox
after_success:
- pip install codecov
- codecov
- pip install Sphinx==3.0.3
- pip install sphinx_rtd_theme==0.4.3
- pip install . # Seems to be required for the apidocs
- cd docs
- sphinx-apidoc ../scopecuisine -o ./
- make html
- cd ..
deploy:
- provider: pypi
skip_cleanup: true
distributions: sdist bdist_wheel
user: __token__
password:
secure: "kmO8poAaLW/ad4lht/yHLumVcxvr/p7wO+80s77NnqaJc3/EvMc3+XCTVAXhCkCAbnLW0aO2fEANbmhZbkRCzDkf0gXdxkhZkSVxq/SeXbLFmz+4VgrrkV/X2tfCVX2JI8+n+DGiDP/k/nVuaE3RcEn9vF3LyacbGqQH0RhWzgbQj1Qito+wrvnUgOuLVuj7E7688WM9AEzPsQvqvIxY0w3Mcq/S/MAoQVRaEGki2Pd9S8OyUB3W6M3bEjkwayhkf5o0IxrXZthuf8CLrXUzr4xiPAMNk5eINDrv2beGXdGSUPPNd/jAbpMtu+AdZMHNyypBNvkAWjNdBYyZoE6l0qJYO/WxU3urVsAPdBlUqqCH+nK2p/sHhto/Ig47xyiOkYD5JJxseQW0UoWt8PJ84yVDgw6CE9BNA1JwvsdKwkSjBib2J8vWjae9kph+X2O7YffVCs2x8Yq64ugBcxt+TjxzY0c5EjHxIMCNYE/QyD3j37w3G77x/vDhZ6Vl/AOtWRTYj+x76dKt6AqCGV//IXYlNg09prqJW563gd2IZfmzJxnyYg18vQzjcaJdXWwPd3SeOXJgZrpa/M6EzEMFye0pJphbU7GH+Ta62F4/VdGZSlBrcomsIRdY/ethqHwlooEQDC3pzxh1l13NOlZ+/wnV0lZJEjRMOoIeaACb61c="
on:
tags: true
branch: master
python: 3.8
skip_existing: true
committer-from-gh: true