Skip to content

Commit

Permalink
added deploy config in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
SoluMilken committed Nov 1, 2018
1 parent cddbcc2 commit a3f3322
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,22 @@ language: python
python:
- "3.5"
- "3.6"
# command to install dependencies
install: "make install"
before_script: "make lint"
# command to run tests
script: "make test"

install:
- make install

script:
- make lint
- make test

deploy:
provider: pypi
user: solumilken
password:
secure: dFRASkM+gXpPqqbWL8PS2XAbyutbJnU8z5rk88+J2XJhn5IyXkn6wBycXtkhgkuqT34HfIZrcTFBYgrsGu44hTXHwvQwFFHtHkU8tqLaa2gnvODlWPkG6AjmgzyrR/yAvpHpYEea13xC3biD3TGa1Do9aFbDsdfnni1Cpjd4dbcY6c2IoHp0V047tAIaq9agqeCvONVxbPbfuzvc24QbSzfyr2brJdruFR02baqZXnAmdMomLvsY1jzoUhp4k/qU449lfT1p0ITVdLyrCFxqK1A1DyvKcHRv3Shm+MeNbn3Y/AIVjfN71KQaGdsknUFmPjFbBfJPQuzSwRldGm1DaLm8a5A4WLmRmG2ZkMZWrlNWXsc/GbIFxuwA1llJruHgSf6zzwpWMECiDPh3LGo0K21f2nWSgmaJBMPIeLhxHmQ2uEUUkc7EKukdiF1X4ib024FoLvBkBfII/d1qRi6pPse7lKQRC5nILSynBAMaOwTESZnd9BGShpyH7/VPIzEI58ic/q9c/JgDQVXWp55KetSTXv9xdx4ACZ0KIalQlDJKX7dtuNIZKK9mQ8CM4hgdRxGd4Sb1wX3PTSlQEyeBXRjqu4+hjgfqgBWxNCb+9s99/3UQE1O0us6NBencIxd44exR7T8kkHdiI3Q17dxu43mn/8XDnwkiGQUz0K9GYko=
distributions: sdist
skip_upload_docs: true
skip_cleanup: true
on:
tags: true
python: 3.5
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,8 @@ dev-test:
docs:
make installself
make -C docs

.PHONY: distribute
distribute:
make clean
python setup.py sdist

0 comments on commit a3f3322

Please sign in to comment.