Skip to content

Commit 12bcd14

Browse files
Remove any py39 or py310 runs for now, since CodeBuild image doesn't have those environments
1 parent 4afcad6 commit 12bcd14

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

buildspec-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ phases:
1010
- tox -e flake8,twine
1111

1212
# run unit tests
13+
# TODO change below to `tox -e `py38,py39,py310 -- test/unit` once py39 and py310 are available
1314
- AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_SESSION_TOKEN=
1415
AWS_CONTAINER_CREDENTIALS_RELATIVE_URI= AWS_DEFAULT_REGION=
15-
tox -e py38,py39,py310 -- test/unit
16+
tox -e py38 -- test/unit
1617

1718
# run local integ tests
1819
#- $(aws ecr get-login --no-include-email --region us-west-2)

buildspec.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ phases:
3333
- tox -e flake8,twine
3434

3535
# run unit tests
36-
- tox -e py38,py39,py310 test/unit
36+
# TODO change below to `tox -e `py38,py39,py310 -- test/unit` once py39 and py310 are available
37+
- tox -e py38 -- test/unit
3738

3839
# define tags
3940
- GENERIC_TAG="$FRAMEWORK_VERSION-pytorch-$BUILD_ID"

0 commit comments

Comments
 (0)