Skip to content

Commit

Permalink
[tmp] #8
Browse files Browse the repository at this point in the history
  • Loading branch information
labbati committed Sep 13, 2018
1 parent ecedb1b commit fbfaeed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
- restore_cache:
keys:
- tox-cache-ddtracerun-{{ checksum "tox.ini" }}
- run: tox -e '{py27,py34,py35,py36}-ddtracerun' --result-json /tmp/ddtracerun.results
- run: TOX_SKIP_DIST=False; tox --recreate -e '{py27,py34,py35,py36}-ddtracerun' --result-json /tmp/ddtracerun.results
- persist_to_workspace:
root: /tmp
paths:
Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
##
#See related github topic:
# - https://github.com/pypa/virtualenv/issues/596
skipsdist=True
skipsdist={env:TOX_SKIP_DIST:True}
envlist =
flake8
wait
Expand Down Expand Up @@ -91,6 +91,10 @@ basepython =

deps =
wrapt
# In this version of tox (2.91) negations seems not to be working, and in fact they are not mentioned in the doc for
# 2.9.1 (https://tox.readthedocs.io/en/2.9.1/config.html#factors-and-factor-conditional-settings). If we update to
# to version 3.x we can use negations and install msgpack-python only when we are not installing specific version of the
# library, e.g. something like: !msgpack: msgpack-python
msgpack-python
pytest
opentracing
Expand Down

0 comments on commit fbfaeed

Please sign in to comment.