Skip to content

Commit af62be1

Browse files
committed
An attempt to do releases in travis
1 parent 1de13ad commit af62be1

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

.travis.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,27 @@ matrix:
66
env: TOXENV=py34
77
- python: 3.5
88
env: TOXENV=py35
9+
- python: 3.4
10+
env: TOXENV=docs
911
- python: 3.4
1012
env: TOXENV=py34-linux-package
1113
- python: 3.5
1214
env: TOXENV=py35-linux-package
13-
- python: 3.4
14-
env: TOXENV=docs
1515

1616
install:
1717
- pip install tox
1818
- pip install .
1919

2020
script:
21-
- tox -v
21+
- tox -v --skip-missing-interpreters
2222

23+
deploy:
24+
provider: releases
25+
skip_cleanup: true
26+
api_key:
27+
secure: NTtQxdQ29cUcY8mMVzPV/hz8eAn4Hz80bIkxrhec2oocDXdTOdKUFd+yUmgFe3olPTX/MQYR9DFEEqObExakZdhIf32KhIITp40fJwLXWjXi1wxEJgiPGWXIZ48QUBkcO/YlXE2bY6bW1vDuvjQMhapUTG0JqgZgb8pSS6eUB2Cmh3Gaeq7dE1P9ZNIePppvuiCLD00fbQCsCDUT1T+QvcaIZ2DNs238gPM9RNrCIE47bsG72xhNc8M8CPv4Jp+j0Avwc9tuutLi9SXgbGTsyEFYkbVCfhYctvwpG9GR5qe9N8Lv92C1GTNiu7btLkffXOIV/zIX73AHqyZTZw3jzg5aejUOhHMd4k2usDyDyDVXY2q2sXfSy3Fr69CJuZk7k0ivvYdavToNOqnoJD8t9scLCCyVUjgdcVQHd/fRbNTHBRhKJZbRkXboDvdwhvrElo/asyqZzTd6YbbJEV7FRrjCXrSjJ3nS7tKe4yot+vsjmuQt+OyTE/Qt3IsKHBCjAc52tjbMXTC3gX0WqCIxSlcQVo9IKaynxc2hFiL1+UEKwoFGDHZ7rwiqgXHoF+QahVYus5Z2iqz+xYerF7Ss+XPc15VgN/NHj83BdFHYLNtMGdnAARW88w1QXo5FxrjfZYOcS+4RNMo9aeYktDexT4bo5MT/CPtQjWVSQ9syLjQ=
28+
file: "stacks_py*_linux.pex"
29+
file_glob: true
30+
on:
31+
tags: true
32+
repo: cfstacks/stacks

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
[pytest]
1+
[tool:pytest]
22
pep8ignore = E501

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ deps =
2828
pex
2929
wheel
3030
commands =
31-
/bin/bash -c 'pex . -r <(pip freeze) --disable-cache --python-shebang="/usr/bin/env python3" -o {envtmpdir}/stacks.pex -c stacks'
31+
/bin/bash -c 'pex . -r <(pip freeze) --disable-cache --python-shebang="/usr/bin/env python3" -o stacks_py34_linux.pex -c stacks'
3232

3333
[testenv:py35-linux-package]
3434
basepython = python3.5
@@ -37,7 +37,7 @@ deps =
3737
pex
3838
wheel
3939
commands =
40-
/bin/bash -c 'pex . -r <(pip freeze) --disable-cache --python-shebang="/usr/bin/env python3" -o {envtmpdir}/stacks.pex -c stacks'
40+
/bin/bash -c 'pex . -r <(pip freeze) --disable-cache --python-shebang="/usr/bin/env python3" -o stacks_py35_linux.pex -c stacks'
4141

4242
[testenv:docs]
4343
basepython = python3.4

0 commit comments

Comments
 (0)