+ draft .travis.yml to deploy to pypi.org (not working yet)

This commit is contained in:
nicobo 2020-12-20 22:17:32 +01:00
parent a741194deb
commit 44de52ea2b
No known key found for this signature in database
GPG key ID: 2581E71C5FA5285F

View file

@ -1,10 +1,16 @@
language: python language: python
python: python:
- "3.4.2" - "3.4"
- "3.6" - "3.6"
- "3.7" - "3.7"
- "nightly" - "nightly"
install: install:
- pip install -r requirements.txt - pip install -r requirements-build.txt -r requirements-runtime.txt
script: script:
- python -m unittest discover -s tests - python -m unittest discover -s tests
deploy:
provider: pypi
username: ...
password: ...
on:
tags: true