-
Notifications
You must be signed in to change notification settings - Fork 56
/
.travis.yml
54 lines (47 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
54
language: python
python:
- '3.4'
# - '3.5' # See #1130
- '3.6'
matrix:
include:
- python: 3.7
dist: xenial
install:
- pip install -r test_requirements.txt
- pip install -r ./doc/requirements.txt
- pip install -r requirements.txt
script:
- flake8
- python setup.py coverage
# this part should be made conditional
- git clone https://github.com/ManiacalLabs/BiblioPixelAnimations.git
- python setup.py install
- ./scripts/documentation/clean
- ./scripts/documentation/preprocess
- ./scripts/documentation/api
- ./scripts/documentation/bp
- ./scripts/documentation/sphinx
deploy:
- provider: pypi
skip_cleanup: true
user: ManiacalLabs
password:
secure: "JnYRoQqID4nareQqAO2kOkq203FLjVLpN5ncWrsykuttOQK6KJXbuYJZTT65RJzO6iMfnz8YV/fzvL9c18po/pyxtEwTB2Ac9fdwjlHmOXthkt3uxAA7O89yr5kulwmMZ/sCb9QRI00kuA9dE8wEfmyLt5cF11Y5Qw1R8XGSzS+MKpO5nXA6jRg9VCXhkDKfZC3s+4Xm2K35xWwVit07DnAdhrqPW3hyDtSFFVd5cBPtHWzJbg6VNfPx7DRWe26wa/DExzPP9iz0Dv4DWew1rHKcFA5Y7PHxEKaL200lZig4W7Tg4ASpQwZP7fGO+NWPnfX9GZBMYN3z9FzziWzg+Q+DzUsbmobGuGQoIHbpEEYkHcIyb+KwN7J9GiUHqznjHu792aUsRfTasINNMzIXzf8ahfbIYiZfxyriF0elZDbWG9O4Avb15P6tBuOsDYdurEcN3BdLmnepTj2edotVK/7mSMhjVZEWBDhffMpStskt0CqFiUYb9MZgdLDr+cmLCYx9d36RE0Q8nv8oAd5naZ3ccwv+ZJiGBWv5YyhpkrIHQbH185DHV7bFBJkx87ck28t4cC8FKLi+Ry60MBJTD3DT93jdDVmysqV453ipaCX3akYOuLJINmBJHSxU+eRqAqnTY8ZMBjClZBwOxq0Xp7BZoWEGJhvjTvR1xd+RYys="
on:
repo: ManiacalLabs/BiblioPixel
python: 3.6
tags: true
- provider: pages
skip_cleanup: true
local_dir: html
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
on:
python: 3.6
branch: dev # for now - eventually master
# Don't compile "experimental" branches starting with x-, y-, or z-.
branches:
except:
- /^x-.*$/
- /^y-.*$/
- /^z-.*$/