Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tests/tox): updated gevent in tox config (backport #4020) (backport #4037) #4100

Merged
merged 2 commits into from
Aug 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
27 changes: 22 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,24 @@ isolated_build = true

requires = virtualenv<=20.2.1

[testenv]
[testenv:gevent_contrib-py{37,38}-gevent{13,14}-sslmodules3-sslmodules]
# Wheels for gevent segfault pretty easily
install_command=python -m pip install --no-binary=gevent {opts} {packages}
usedevelop = true

[testenv:py{37,38}-opentracer_gevent-gevent{13,14}]
# Wheels for gevent segfault pretty easily
install_command=python -m pip install --no-binary gevent {opts} {packages}
install_command=python -m pip install --no-binary=gevent {opts} {packages}
usedevelop = true

[testenv:py{37,38}-profile-minreqs-gevent]
# Wheels for gevent segfault pretty easily
install_command=python -m pip install --no-binary=gevent {opts} {packages}
usedevelop = true


[testenv]
install_command=python -m pip install {opts} {packages}
usedevelop = true

setenv =
Expand All @@ -86,7 +101,7 @@ extras =
profile: profiling

deps =
cython
cython<=0.29.32
cmake
ninja
pytest-cov
Expand All @@ -104,8 +119,10 @@ deps =
profile-!minreqs-gevent: gevent
py27-profile-minreqs-gevent: gevent==1.1.0
py{35,36,37,38}-profile-minreqs-gevent: gevent==1.4.0
py39-profile-minreqs-gevent: gevent==20.6.0
py39-profile-minreqs-gevent: greenlet==0.4.16
py39-profile-minreqs-gevent: gevent==20.6.1; sys_platform != 'win32'
py39-profile-minreqs-gevent: gevent==21.1.2; sys_platform == 'win32'
py39-profile-minreqs-gevent: greenlet==0.4.16; sys_platform != 'win32'
py39-profile-minreqs-gevent: greenlet==0.4.17; sys_platform == 'win32'
py310-profile-minreqs-gevent: gevent==21.8.0
py310-profile-minreqs-gevent: greenlet==1.1.0
# backports
Expand Down