Skip to content

Commit

Permalink
Cleanup binary env stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Feb 7, 2017
1 parent c14f5d8 commit 1ebc90a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ os:
- osx
env:
matrix:
- env: TOX_ENV=python
- env: TOX_ENV=flake8
- env: TOX_ENV=spelling
- env: TOX_ENV=package
- env: TOX_ENV=binary
- TOX_ENV=python
- 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 Down
13 changes: 3 additions & 10 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ envlist =
flake8,
spelling,
package,
binarylinux,
binaryosx
binary
skipsdist = True

[testenv:python]
Expand Down Expand Up @@ -40,14 +39,8 @@ whitelist_externals=
commands=
python setup.py sdist bdist_wheel

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

[testenv:binaryosx]
commands=
pyinstaller --onefile -n eptransitionmac {toxinidir}/eptransition/transition.py
pyinstaller --onefile -n eptransition{env:TRAVIS_OS_NAME} {toxinidir}/eptransition/transition.py
deps=
pyinstaller

0 comments on commit 1ebc90a

Please sign in to comment.