Skip to content

Commit

Permalink
Cleanup build process, removing tests auto deploy
Browse files Browse the repository at this point in the history
* Adds pypi deploy info, only on tags. Fixes #4
* Relates to #2: To effectively test something like this we need a bit of infrastructure, it seems otherwise silly to test most of these.
  • Loading branch information
mattrasband committed Oct 30, 2016
1 parent 0083826 commit dac5cf2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Python
.cache/
.eggs/
*.egg-info
__pycache__/
Expand Down
18 changes: 13 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
language: python
python:
- "3.5"
- "3.6-dev"
- '3.5'
- 3.6-dev
install:
- python setup.py install
- python setup.py install
script:
- python setup.py flake8
- python setup.py test
- python setup.py flake8
#- python setup.py test
deploy:
provider: pypi
user: mrasband
distributions: sdist bdist_wheel
on:
tags: true
password:
secure: Vv5aEv4O6LIuxdKBorP1ckN8WdC9Xc3CHRfrc61MkEbnln4kHFxrTjMjgK/rUR/moFoXBQHC8OMU3AWqyWblypjjG5GqsAUL7UsS+jIC8Eoulf3vamrmjTjZG33YqFkc5MLVdGhBcKV0rZrnCN0nb2aG8mN71AuV2ZVrj1NXhJjYU5fR6oSWi4AfJvbBtK52xxrgtidJP0gpSD0KNYe28VmAvrumkLPWYpFIVYwPBP9iFDM5YX0S4IZNDPRvZJ9heDLywAJ34ChtpRnsQ1ak6ECIC6vQCUUHe+4xgwaNdgvpBwoj9h7ZcZIE5oqrjsQapy9zGpzVkQ4F0erbfU3vLtqWVcQY4EIcp5iRSZs+DmWT/2S2pAa0Q0L1O1mH9ZH604zEfec2J7fNrO6vEigxpfvdY6xYzEvryD17eojyGDTEc/5DQT4h0yQ1FTt15Jlpi2ECugCeoxMY3KaL9/UCga6cMRvoRZJtOUO2mdg6vNvjNY3JpZ5OpohCmdhATeL4yRg5eE4rhVolqBdHF/sAEQokEKle9ym0UrfyBN1zwmRexL4Oho6gB299zOpL4mUJfakB3NfKkDn5WGqLuP2C1R2h3J3Y0zEkshMKxVMaX6uhHKYXWIKU8D3HuNKVqbEqFdOTLrOv98I6OzGKrp97b32cmSltBcAZ63YBP/rSxNY=
2 changes: 0 additions & 2 deletions tests/test_nothing.py

This file was deleted.

0 comments on commit dac5cf2

Please sign in to comment.