Commit 792cbd6c authored by Kirill Smelkov's avatar Kirill Smelkov

tox: -py36,py37d +py38d, py38

parent d105d05a
[tox] [tox]
envlist = envlist =
{py27d,py27,py36,py37d,py37,pypy,pypy3}-{thread,gevent} {py27d,py27,py37,py38d,py38,pypy,pypy3}-{thread,gevent}
# ThreadSanitizer # ThreadSanitizer
...@@ -10,26 +10,26 @@ envlist = ...@@ -10,26 +10,26 @@ 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.
{py27d,py27,py36,py37d,py37 }-{thread }-tsan {py27d,py27,py37,py38d,py38 }-{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.
# {py27d,py27,py36,py37d,py37 }-{ gevent}-tsan # {py27d,py27,py37,py38d,py38 }-{ gevent}-tsan
# AddressSanitizer # AddressSanitizer
# XXX asan does not work with gevent: https://github.com/python-greenlet/greenlet/issues/113 # XXX asan does not work with gevent: https://github.com/python-greenlet/greenlet/issues/113
{py27d,py27,py36,py37d,py37,pypy,pypy3}-{thread }-asan {py27d,py27,py37,py38d,py38,pypy,pypy3}-{thread }-asan
[testenv] [testenv]
basepython = basepython =
py27d: python2.7-dbg py27d: python2.7-dbg
py27: python2.7 py27: python2.7
py36: python3.6
py37d: python3.7-dbg
py37: python3.7 py37: python3.7
py38d: python3.8-dbg
py38: python3.8
pypy: pypy pypy: pypy
pypy3: pypy3 pypy3: pypy3
......
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