-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.travis.yml
More file actions
39 lines (37 loc) · 729 Bytes
/
.travis.yml
File metadata and controls
39 lines (37 loc) · 729 Bytes
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
language: python
cache: pip
python:
- "3.6"
before_install:
- pip install pytest
- pip install pytest-cov
- pip install coveralls
- pip install mkdocs
- pip install pygments
- pip install mkdocs-material
- pip install pymdown-extensions
script:
- py.test
after_success:
- COVERALLS_REPO_TOKEN=${COVERALLS_REPO_TOKEN} coveralls
- mkdocs build
deploy:
- provider: pages
skip_cleanup: true
github_token: $GH_TOKEN
local_dir: site
edge: true
on:
branch: master
- provider: pypi
user: danielecook
password: $PYPI
on:
branch: master
tags: true
- provider: releases
skip_cleanup: true
overwrite: true
api_key: $GH_TOKEN
on:
tags: true