Commit d105d05a authored by Kirill Smelkov's avatar Kirill Smelkov

tox: Gevent no longer fails to install with python2-dbg

https://github.com/gevent/gevent/issues/1461 was fixed in
https://github.com/gevent/gevent/commit/cc7e28cf
parent 0e3da017
[tox] [tox]
envlist = envlist =
{ py27,py36,py37d,py37,pypy,pypy3}-{thread,gevent} {py27d,py27,py36,py37d,py37,pypy,pypy3}-{thread,gevent}
# XXX gevent fails to install with python2-dbg (https://github.com/gevent/gevent/issues/1461)
{py27d }-{thread }
# ThreadSanitizer # ThreadSanitizer
...@@ -12,14 +10,12 @@ envlist = ...@@ -12,14 +10,12 @@ envlist =
# (*) PyPy locks its GIL (see RPyGilAcquire) by manually doing atomic cmpxchg # (*) PyPy locks its GIL (see RPyGilAcquire) by manually doing atomic cmpxchg
# and other games, which TSAN cannot see if PyPy itself was not compiled with # and other games, which TSAN cannot see if PyPy itself was not compiled with
# -fsanitize=thread. # -fsanitize=thread.
{ py27,py36,py37d,py37 }-{thread }-tsan {py27d,py27,py36,py37d,py37 }-{thread }-tsan
# XXX see ^^^ about gevent vs python2-dbg
{py27d }-{thread }-tsan
# XXX py*-gevent-tsan would be nice to have, but at present TSAN is not # XXX py*-gevent-tsan would be nice to have, but at present TSAN is not
# effective with gevent, because it does not understand greenlet "thread" # effective with gevent, because it does not understand greenlet "thread"
# switching and so perceives the program as having only one thread where races # switching and so perceives the program as having only one thread where races
# are impossible. Disabled to save time. # are impossible. Disabled to save time.
# { py27,py36,py37d,py37 }-{ gevent}-tsan # {py27d,py27,py36,py37d,py37 }-{ gevent}-tsan
# AddressSanitizer # AddressSanitizer
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment