Skip to content

Commit f8e258e

Browse files
authored
ci(py310): test against Python 3.10.0 (#184)
1 parent d7c8d37 commit f8e258e

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

Diff for: buildspec.yml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ batch:
1313
buildspec: codebuild/python3.8.yml
1414
- identifier: python3_9
1515
buildspec: codebuild/python3.9.yml
16+
- identifier: python3_10
17+
buildspec: codebuild/python3.10.yml
1618

1719
- identifier: code_coverage
1820
buildspec: codebuild/coverage/coverage.yml

Diff for: codebuild/python3.10.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 0.2
2+
3+
env:
4+
variables:
5+
TOXENV: "py310-integ-slow"
6+
AWS_ENCRYPTION_SDK_PYTHON_INTEGRATION_TEST_AWS_KMS_KEY_ID: >-
7+
arn:aws:kms:us-west-2:658956600833:key/b3537ef1-d8dc-4780-9f5a-55776cbb2f7f
8+
AWS_ENCRYPTION_SDK_PYTHON_INTEGRATION_TEST_AWS_KMS_KEY_ID_2: >-
9+
arn:aws:kms:eu-central-1:658956600833:key/75414c93-5285-4b57-99c9-30c1cf0a22c2
10+
11+
phases:
12+
install:
13+
runtime-versions:
14+
python: latest
15+
build:
16+
commands:
17+
- pyenv install 3.10.0
18+
- pyenv local 3.10.0
19+
- pip install tox tox-pyenv
20+
- tox

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{35,36,37,38,39}-{local,integ,ddb,examples}-fast,
3+
py{35,36,37,38,39,310}-{local,integ,ddb,examples}-fast,
44
nocmk, sourcebuildcheck,
55
docs, bandit, doc8, readme,
66
flake8{,-tests,-examples}, pylint{,-tests,-examples},

0 commit comments

Comments
 (0)