-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathconftest.py
205 lines (152 loc) · 7.51 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# or in the "license" file accompanying this file. This file is distributed
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.
from __future__ import absolute_import
import logging
import os
import boto3
import pytest
from sagemaker import LocalSession, Session
from utils import image_utils
logger = logging.getLogger(__name__)
logging.getLogger('boto').setLevel(logging.INFO)
logging.getLogger('botocore').setLevel(logging.INFO)
logging.getLogger('factory.py').setLevel(logging.INFO)
logging.getLogger('auth.py').setLevel(logging.INFO)
logging.getLogger('connectionpool.py').setLevel(logging.INFO)
DIR_PATH = os.path.dirname(os.path.realpath(__file__))
# these regions have some p2 instances, but not enough for automated testing
NO_P2_REGIONS = [
'ca-central-1',
'eu-central-1',
'eu-west-2',
'us-west-1',
'eu-west-3',
'eu-north-1',
'sa-east-1',
'ap-east-1',
'me-south-1'
]
def pytest_addoption(parser):
parser.addoption('--build-image', '-B', action='store_true')
parser.addoption('--push-image', '-P', action='store_true')
parser.addoption('--dockerfile-type', '-T',
choices=['dlc.cpu', 'dlc.gpu', 'mxnet.cpu'],
default='mxnet')
parser.addoption('--dockerfile', '-D', default=None)
parser.addoption('--docker-base-name', default='sagemaker-mxnet-training')
parser.addoption('--region', default='us-west-2')
parser.addoption('--instance-count', default='1,2', choices=['1', '2', '1,2'])
parser.addoption('--framework-version', default="1.7.0")
parser.addoption('--py-version', default='3', choices=['2', '3', '2,3'])
parser.addoption('--processor', default='cpu', choices=['gpu', 'cpu', 'cpu,gpu'])
parser.addoption('--aws-id', default=None)
parser.addoption('--instance-type', default=None)
# If not specified, will default to {framework-version}-{processor}-py{py-version}
parser.addoption('--tag', default=None)
@pytest.fixture(scope='session', name='dockerfile_type')
def fixture_dockerfile_type(request):
return request.config.getoption('--dockerfile-type')
@pytest.fixture(scope='session', name='dockerfile')
def fixture_dockerfile(request, dockerfile_type):
dockerfile = request.config.getoption('--dockerfile')
return dockerfile if dockerfile else 'Dockerfile.{}'.format(dockerfile_type)
@pytest.fixture(scope='session', name='build_image', autouse=True)
def fixture_build_image(request, framework_version, dockerfile, image_uri, region):
build_image = request.config.getoption('--build-image')
if build_image:
return image_utils.build_image(framework_version=framework_version,
dockerfile=dockerfile,
image_uri=image_uri,
region=region,
cwd=os.path.join(DIR_PATH, '..'))
return image_uri
@pytest.fixture(scope='session', name='push_image', autouse=True)
def fixture_push_image(request, image_uri, region, aws_id):
push_image = request.config.getoption('--push-image')
if push_image:
return image_utils.push_image(image_uri, region, aws_id)
return None
def pytest_generate_tests(metafunc):
if 'instance_count' in metafunc.fixturenames:
ic_params = [int(x) for x in metafunc.config.getoption('--instance-count').split(',')]
metafunc.parametrize('instance_count', ic_params, scope='session')
if 'py_version' in metafunc.fixturenames:
py_version_params = ['py' + v for v in metafunc.config.getoption('--py-version').split(',')]
metafunc.parametrize('py_version', py_version_params, scope='session')
if 'processor' in metafunc.fixturenames:
processor_params = metafunc.config.getoption('--processor').split(',')
metafunc.parametrize('processor', processor_params, scope='session')
@pytest.fixture(scope='session')
def docker_base_name(request):
return request.config.getoption('--docker-base-name')
@pytest.fixture(scope='session')
def region(request):
return request.config.getoption('--region')
@pytest.fixture(scope='session')
def framework_version(request):
return request.config.getoption('--framework-version')
@pytest.fixture(scope='session')
def aws_id(request):
return request.config.getoption('--aws-id')
@pytest.fixture(scope='session')
def tag(request, framework_version, processor, py_version):
provided_tag = request.config.getoption('--tag')
default_tag = '{}-{}-{}'.format(framework_version, processor, py_version)
return provided_tag if provided_tag is not None else default_tag
@pytest.fixture(scope='session')
def instance_type(request, processor):
provided_instance_type = request.config.getoption('--instance-type')
default_instance_type = 'ml.c4.xlarge' if processor == 'cpu' else 'ml.p2.xlarge'
return provided_instance_type if provided_instance_type is not None else default_instance_type
@pytest.fixture(name='docker_registry', scope='session')
def fixture_docker_registry(aws_id, region):
return '{}.dkr.ecr.{}.amazonaws.com'.format(aws_id, region) if aws_id else None
@pytest.fixture(name='image_uri', scope='session')
def fixture_image_uri(docker_registry, docker_base_name, tag):
if docker_registry:
return '{}/{}:{}'.format(docker_registry, docker_base_name, tag)
return '{}:{}'.format(docker_base_name, tag)
@pytest.fixture(scope='session')
def sagemaker_session(region):
return Session(boto_session=boto3.Session(region_name=region))
@pytest.fixture(scope='session')
def sagemaker_local_session(region):
return LocalSession(boto_session=boto3.Session(region_name=region))
@pytest.fixture(scope='session')
def local_instance_type(processor):
return 'local' if processor == 'cpu' else 'local_gpu'
@pytest.fixture(autouse=True)
def skip_test_in_region(request, region):
if request.node.get_closest_marker('skip_test_in_region'):
if region == 'me-south-1':
pytest.skip('Skipping SageMaker test in region {}'.format(region))
@pytest.fixture(autouse=True)
def skip_by_device_type(request, processor):
is_gpu = (processor == 'gpu')
if (request.node.get_closest_marker('skip_gpu') and is_gpu) or \
(request.node.get_closest_marker('skip_cpu') and not is_gpu):
pytest.skip('Skipping because running on \'{}\' instance'.format(processor))
@pytest.fixture(autouse=True)
def skip_gpu_instance_restricted_regions(region, instance_type):
if region in NO_P2_REGIONS and instance_type.startswith('ml.p2'):
pytest.skip('Skipping GPU test in region {} to avoid insufficient capacity'.format(region))
@pytest.fixture(autouse=True)
def skip_by_dockerfile_type(request, dockerfile_type):
is_generic = (dockerfile_type == 'mxnet.cpu')
if request.node.get_closest_marker('skip_generic') and is_generic:
pytest.skip('Skipping because running generic image without mpi and horovod')
@pytest.fixture(autouse=True)
def skip_py2_containers(request, tag):
if request.node.get_closest_marker('skip_py2_containers'):
if 'py2' in tag:
pytest.skip('Skipping python2 container with tag {}'.format(tag))