<div dir="ltr">Hi Rob,<div><br></div><div>Thanks for replying!</div><div><br></div><div>Maybe I&#39; just still new to this thing, but isn&#39;t &quot;usedevelop=False&quot; the default configuration?  I normally don&#39;t use the &quot;usedevelop&quot; nor the &quot;--develop&quot; CLI option, so I guess I&#39;m already doing this.</div><div><br></div><div>Also, it looks like Tox uses &quot;python setup.py sdist&quot; to generate my package.  I would like for it to test -- in addition to &quot;sdist&quot; -- using &quot;python setup.py bdist_wheel&quot; to make sure the binary distribution is good to go as well.</div><div><br></div><div>Thanks,</div><div><br></div><div>André</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jun 18, 2015 at 8:39 PM, Robert Collins <span dir="ltr">&lt;<a href="mailto:robertc@robertcollins.net" target="_blank">robertc@robertcollins.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 19 June 2015 at 11:31, André Caron &lt;<a href="mailto:andre.l.caron@gmail.com">andre.l.caron@gmail.com</a>&gt; wrote:<br>
</span><div><div class="h5">&gt; Hi all,<br>
&gt;<br>
&gt; I&#39;m using Tox, which installs the package in the test environments using<br>
&gt; sdist (unless running with --develop option).  This is very nice, but it&#39;s<br>
&gt; happened that I end up with deployment errors with binary distributions.<br>
&gt;<br>
&gt; I&#39;ve been wondering how to automate the testing of my package&#39;s binary<br>
&gt; distribtion to make sure it gives the same result as the source distribution<br>
&gt; -- at the very least on the host system -- without actually running the<br>
&gt; package through PyPI.<br>
&gt;<br>
&gt; What are your recipes for doing this?<br>
<br>
</div></div>In tox.ini<br>
<span class="im HOEnZb"><br>
usedevelop = False<br>
<br>
will change this to doing setup.py install rather than develop. That<br>
should be enough to flush out many more issues.<br>
<br>
-Rob<br>
</span><div class="HOEnZb"><div class="h5">--<br>
Robert Collins &lt;<a href="mailto:rbtcollins@hp.com">rbtcollins@hp.com</a>&gt;<br>
Distinguished Technologist<br>
HP Converged Cloud<br>
</div></div></blockquote></div><br></div>