From 927d8b5128282bf38a1f109d8b0a7c2be0141f71 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Thu, 1 Apr 2021 07:31:10 +0800 Subject: [PATCH] tox.ini: Use skipdist for faster recreate --- tox.ini | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 75af016..0c1fa44 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,18 @@ [tox] envlist = py27,py34,py35,py36 +skipsdist = True [testenv] deps= + pkgconfig + Jinja2 pytest cython commands = - py.test + python setup.py install + py.test {posargs} setenv = - CFLAGS='-stdlib=libc++' \ No newline at end of file + CFLAGS='-stdlib=libc++' + CXXFLAGS='-stdlib=libc++'