mirror of
https://github.com/ProtoThis/python-synology.git
synced 2025-08-16 18:22:10 +00:00
27 lines
548 B
YAML
27 lines
548 B
YAML
language: python
|
|
sudo: false
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
install:
|
|
- pip install flake8 . --use-mirrors
|
|
before_script:
|
|
- "flake8 --show-source --builtins=_ synology"
|
|
script:
|
|
- python setup.py install
|
|
- python setup.py sdist
|
|
deploy:
|
|
- provider: pypi
|
|
user: $pypi_test_user
|
|
password: $pypi_test_pass
|
|
server: $pypi_test
|
|
on:
|
|
branch: deploy-test
|
|
python: "3.4"
|
|
- provider: pypi
|
|
user: $pypi_user
|
|
password: $pypi_pass
|
|
server: $pypi
|
|
on:
|
|
branch: deploy
|
|
python: "3.4" |