diff options
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index beb1568..c26fcd2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,14 @@ python: - '2.6' install: - pip install -r dev-requirements.txt -# will need this when we automatically push to pypi -# - pip install twine +- pip install twine script: nosetests tests.py --with-coverage --cover-package=jsonrpclib +deploy: + provider: pypi + user: joshmarshall + password: + secure: RbRcj7YdDXE9U2/a9yg4DW9UXFfrGWrM+S8uE8RgYu1D9njDDzUyNcFygaBXd8rxd8GpwRXHzSAO31B/Rk4NVbbM7JtcIA/52jx5j+4DdmEhffnzvahDkCZT6EV5iS3IxlShbuxgbzp3Qz14jF7Kl9iBSCOlIFItLCDlK7rfyJU= + on: + tags: true + repo: joshmarshall/jsonrpclib + branch: master |