Skip to content

Commit

Permalink
Add binary tox environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Feb 6, 2017
1 parent c7aed8a commit 98dd332
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ env:
- TOX_ENV=flake8
- TOX_ENV=spelling
- TOX_ENV=package
- TOX_ENV=binary
install:
- sudo apt-get install python-enchant -y
- pip install --upgrade pip
Expand All @@ -25,3 +26,11 @@ deploy:
distributions: sdist bdist_wheel
repo: Myoldmopar/ep-transition
condition: $TOX_ENV = package
- provider: releases
skip_cleanup: true
api_key:
secure: k+mg38vs1FT7SgCf//Yl35G6S5oGl/Ujz/iTBrKx9pkUvqKb+pL8xq3p+xNBCVyCQZvvFfnMI0Se6ZyJt0PsjkZOJtSIfUgtvL8G6LqINyef7VFOyu92d15e2mEyshwtl6eumzHC74+XZJuQJLp9rvZfogy3oBypPO9rCcIzMZ2KaZ+2+SEEMKAnSjrpLBm6CRN8BneV8D+Wma8CpzgPHRS3G0Aa8rxtAUTi8A9GWUFMi+rWF8odAB4krDsylvTh5hBqlbtDN2Io2CzcEk8gGdEI5Q9kRaMfh+QtZJlU4FuIKtnDvM59MWxnsAzdxeCsoV076qqspSp6aHb7Y7XiOCL1LGuvWPP8k5ALEyZUob+IU/74dQItxoc40ftZvWSpuX//KdgHp1W0ZxDSwUj2+Pl7aIQn5eexlJaCAEE4LVEbWYa9GBRAuDmbiVAm/xPu+F1VIOlrI5OtINua5ATZMNOmpqiHlE7neqBcHjJDndRJ5u+hdMRD3ud1KGj0RqnZwYogl0vasq65oya8TsIgnJrySHVOC3jMpg6z8xIZpacpJmk1lsjs4d+ygEdEicazXe/VkTw9rfY+7LaR81ynjG1OaTerCxZGmIOU0l8CnzBbklfiAvpfJw7GXvkyyTngnmmxM96D1QQr4HHYWqw6kO18XEhwxYI5BvBCE7s/exs=
file: transition
on:
tags: true
condition: $TOX_ENV = binary
9 changes: 8 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ envlist =
python,
flake8,
spelling,
package
package,
binary
skipsdist = True

[testenv:python]
Expand Down Expand Up @@ -37,3 +38,9 @@ whitelist_externals=
[testenv:package]
commands=
python setup.py sdist bdist_wheel

[testenv:binary]
commands=
pyinstaller --onefile {toxinidir}/eptransition/transition.py
deps=
pyinstaller

0 comments on commit 98dd332

Please sign in to comment.