Skip to content

Commit e8917d9

Browse files
authored
Merge branch 'master' into transaction-context-manager
2 parents bafb232 + 8387a7d commit e8917d9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+1494
-232
lines changed

.ci/.jenkins_exclude.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
exclude:
2+
- PYTHON_VERSION: pypy-3 # pypy3 currently fails on CI, e.g. https://apm-ci.elastic.co/blue/organizations/jenkins/apm-agent-python%2Fapm-agent-python-mbp/detail/PR-1099/2/pipeline#step-3497-log-1
3+
FRAMEWORK: none
24
# Flask
35
- PYTHON_VERSION: pypy-3
46
FRAMEWORK: flask-0.11 # see https://github.com/pallets/flask/commit/6e46d0cd, 0.11.2 was never released
@@ -128,6 +130,8 @@ exclude:
128130
FRAMEWORK: psycopg2-2.7
129131
- PYTHON_VERSION: python-3.10-rc # see https://github.com/psycopg/psycopg2/issues/858
130132
FRAMEWORK: psycopg2-2.7
133+
- PYTHON_VERSION: pypy-3 # async keyword clash in old version of psycopg2cffi
134+
FRAMEWORK: psycopg2-2.7
131135
# pyodbc
132136
- PYTHON_VERSION: pypy-3
133137
FRAMEWORK: pyodbc-newest
@@ -216,3 +220,16 @@ exclude:
216220
FRAMEWORK: asyncpg-newest
217221
- PYTHON_VERSION: python-3.10-rc # https://github.com/MagicStack/asyncpg/issues/699
218222
FRAMEWORK: asyncpg-newest
223+
- PYTHON_VERSION: pypy-3
224+
FRAMEWORK: aioredis-newest
225+
- PYTHON_VERSION: python-3.6
226+
FRAMEWORK: aioredis-newest
227+
- PYTHON_VERSION: python-3.10-rc # getting "loop argument must agree with lock" error
228+
FRAMEWORK: aioredis-newest
229+
# aiomysql
230+
- PYTHON_VERSION: pypy-3
231+
FRAMEWORK: aiomysql-newest
232+
- PYTHON_VERSION: python-3.6
233+
FRAMEWORK: aiomysql-newest
234+
- PYTHON_VERSION: python-3.10-rc # getting "loop argument must agree with lock" error
235+
FRAMEWORK: aiomysql-newest

.ci/.jenkins_framework.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ FRAMEWORK:
88
- django-3.2
99
- flask-0.12
1010
- flask-1.1
11+
- flask-2.0
1112
- opentracing-newest
1213
- twisted-18
1314
- celery-3-flask-1.0
@@ -18,6 +19,8 @@ FRAMEWORK:
1819
- boto3-newest
1920
- pymongo-newest
2021
- redis-newest
22+
- aioredis-newest
23+
#- aioredis-2 # not supported yet
2124
- psycopg2-newest
2225
- pymssql-newest
2326
- pyodbc-newest
@@ -44,3 +47,4 @@ FRAMEWORK:
4447
- httpx-newest
4548
- httplib2-newest
4649
- prometheus_client-newest
50+
- aiomysql-newest

.ci/.jenkins_framework_full.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ FRAMEWORK:
1515
- flask-0.12
1616
- flask-1.0
1717
- flask-1.1
18+
- flask-2.0
1819
- celery-3-flask-1.0
1920
- celery-3-django-1.11
2021
- celery-3-django-2.0
@@ -40,8 +41,8 @@ FRAMEWORK:
4041
- pymongo-3.4
4142
- pymongo-3.5
4243
- pymongo-newest
43-
- redis-2.8
44-
- redis-2.9
44+
- redis-3
45+
- redis-2
4546
- redis-newest
4647
- psycopg2-2.7
4748
- psycopg2-newest
@@ -73,7 +74,6 @@ FRAMEWORK:
7374
- pymemcache-3.0
7475
- pymemcache-newest
7576
- graphene-2
76-
- httpx-0.12
7777
- httpx-0.13
7878
- httpx-0.14
7979
- httpx-newest

.ci/.jenkins_windows.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
#
77

88
windows:
9-
- VERSION: "3.6"
10-
WEBFRAMEWORK: "none"
11-
ASYNCIO: "true"
9+
# - VERSION: "3.6"
10+
# WEBFRAMEWORK: "none"
11+
# ASYNCIO: "true"
1212
- VERSION: "3.7"
1313
WEBFRAMEWORK: "none"
1414
ASYNCIO: "true"
1515
- VERSION: "3.8"
1616
WEBFRAMEWORK: "none"
1717
ASYNCIO: "true"
18-
# - VERSION: "3.9" # waiting for greenlet to have binary wheels for 3.9
19-
# WEBFRAMEWORK: "none"
20-
# ASYNCIO: "true"
18+
- VERSION: "3.9" # waiting for greenlet to have binary wheels for 3.9
19+
WEBFRAMEWORK: "none"
20+
ASYNCIO: "true"

0 commit comments

Comments
 (0)