Skip to content

Commit 8081efc

Browse files
committed
removing py27 from tests
1 parent a2c522d commit 8081efc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

buildspec-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ phases:
1212
# run unit tests
1313
- AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_SESSION_TOKEN=
1414
AWS_CONTAINER_CREDENTIALS_RELATIVE_URI= AWS_DEFAULT_REGION=
15-
tox -e py27,py36,py37 --parallel all -- test/unit
15+
tox -e py36,py37 --parallel all -- test/unit
1616

1717
# run local integ tests
1818
#- $(aws ecr get-login --no-include-email --region us-west-2)
19-
#- IGNORE_COVERAGE=- tox -e py27,py37 -- test/integ/local
19+
#- IGNORE_COVERAGE=- tox -e py37 -- test/integ/local
2020

2121
# run sagemaker integ tests
22-
#- IGNORE_COVERAGE=- tox -e py27,py37 -- test/integ/sagemaker
22+
#- IGNORE_COVERAGE=- tox -e py37 -- test/integ/sagemaker
2323

2424
# generate the distribution package
2525
- python3 setup.py sdist

buildspec.yml

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

3535
# run unit tests
36-
- tox -e py27,py36,py37 --parallel all test/unit
36+
- tox -e py36,py37 --parallel all test/unit
3737

3838
# define tags
3939
- GENERIC_TAG="$FRAMEWORK_VERSION-tensorflow-$BUILD_ID"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27,py36,py37,flake8
7+
envlist = py36,py37,flake8
88
skip_missing_interpreters = False
99

1010
[travis]

0 commit comments

Comments
 (0)