From: Noah Morrison Date: Thu, 15 Jun 2017 03:51:47 +0000 (-0400) Subject: Add deploy step to travis X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=07727d42bb6f45a5276a241a66dbf2b851c69b1e;p=chevron.git Add deploy step to travis --- diff --git a/.travis.yml b/.travis.yml index b579d3d..45aa92d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,26 +2,43 @@ sudo: false language: python python: - - "2.6" - - "2.7" - - "3.2" - - "3.3" - - "3.4" - - "3.5" - - "pypy" + - '2.6' + - '2.7' + - '3.2' + - '3.3' + - '3.4' + - '3.5' + - pypy matrix: include: - - python: 3.5 - env: - - TOXENV=flake8 + - python: 3.5 + env: + - TOXENV=flake8 install: - - pip install coveralls - - pip install tox-travis +- pip install coveralls +- pip install tox-travis script: - - tox +- tox after_success: - - coveralls +- coveralls + +deploy: + - provider: pypi + user: noahmorrison + password: + secure: GK+PXWWCczHMQAptgAA6umma0kP+fPsCktHzDnpb4Pa7RZBjxjS1mbRtwSfMm8gWcRYkqjO0la/t3TUP3qjfa+x5JmIwy2YTveBKmSjTxLAb9n7fCWZEGu9GWgGvfsmg2Hhi6NYUp9U7ggtoBXQ4AHgmnPyDCL2TQK32PKj5soM= + distributions: sdist bdist_wheel + skip_upload_docs: true + on: + tags: true + - provider: pypi + server: https://testpypi.python.org + user: noahmorrison + password: + secure: GK+PXWWCczHMQAptgAA6umma0kP+fPsCktHzDnpb4Pa7RZBjxjS1mbRtwSfMm8gWcRYkqjO0la/t3TUP3qjfa+x5JmIwy2YTveBKmSjTxLAb9n7fCWZEGu9GWgGvfsmg2Hhi6NYUp9U7ggtoBXQ4AHgmnPyDCL2TQK32PKj5soM= + distributions: sdist bdist_wheel + skip_upload_docs: true \ No newline at end of file