Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tox.ini/setup.cfg configuration #1815

Merged
merged 3 commits into from
Dec 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[wheelhouse_uploader]
artifact_indexes=
# all wheels builded in gensim-wheels repo: https://github.com/MacPython/gensim-wheels
http://b153eb958f4da6029aca-3f9dff7fe564350f10153d8c7bfc5ab6.r54.cf2.rackcdn.com/index.html
http://b153eb958f4da6029aca-3f9dff7fe564350f10153d8c7bfc5ab6.r54.cf2.rackcdn.com/
9 changes: 4 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ builtins = get_ipython


[pytest]
addopts = -rfxEXs --durations=20 --showlocals --rerun 3
addopts = -rfxEXs --durations=20 --showlocals --reruns 3 --reruns-delay 1


[testenv]
Expand Down Expand Up @@ -76,14 +76,13 @@ commands =


[testenv:upload-wheels]
deps = wheelhouse_uploader
deps = twine

commands = python setup.py register sdist upload
commands = twine upload dist/*


[testenv:test-pypi]
deps = wheelhouse_uploader
twine
deps = twine
whitelist_externals = rm

commands =
Expand Down