-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
28 lines (28 loc) · 1.15 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
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9-dev"
- "nightly"
cache: pip
install:
- pip install -r requirements.txt
- pip install -r requirements-test.txt
script:
- black --check mulberry
- python -m unittest discover -s tests/
jobs:
allow_failures:
- python: "3.9-dev"
- python: "nightly"
deploy:
provider: pypi
username: __token__
password:
secure: "cshMS8Te6HxkhpY3taIYMSBDF5Z+c1nAtwTqsHFC1ne8ZFNp6SHfE0gHM44SGpedpO9yujW6GpYA/51U9CRsFVA74xukXXG7TWCyfVGExuMZdjxwbFMGlmHn7eej3Z/3BF9sqa/BnBoa5RSIPgqJbnJkyyfMhnUHiH9hbeLgHaxBwd0Aq3BYpIHvK3iu2qk2UG7CNCAG42/7IzvZWWE0jO5EwEzhtPiM3Yo7b8NmyJIf+E8xAk1f5eyd798PIacth5lBAMo1uynZhiyEEfwwddAJ2zSzfuWYYalf7mhrpWR+tDU18jCdX4Rs/HRlh/bwIgFXoIb5rchFutB6eaTJZ5vFKZ2Lz0nOgA9XlmcSxkax+6sVBVPd6HYszUDP7JRGZBrXoVcYNQIEzDJQre4A1xHMhzjfmdI/4pzqpVP0GAZDVev6lASyVmRP4t82lcVnVvNTfXKUZGxcykheKmgh0nj887StLZZfcmKtpsL0oHcQe03nAq5czVn6WVTIV+Ym2EfIBvDh6GdBRcw7I1uDGvyhVp2n9bglRH6MWUjJHN6BZ7av+wmTkXE8T9fAqnuyxjCHtE6iUNmreB3/NGP1VcXlvZzDnR3umFXJ1BJODj6XUyXTDqKTRLZeCpJzOoijqY0CJLIOSk8UplLafWTeIxCJ0J+09VU8f9+YTMGbrIw="
on:
branch: master
tags: true
distributions: "sdist bdist_wheel"
skip_existing: true