Add Python 3.7-dev to the default docker image.

This commit is contained in:
Matt Clay 2017-11-20 16:22:52 -08:00
parent cf662ed74b
commit 677aca1cc7
3 changed files with 16 additions and 0 deletions

View file

@ -509,6 +509,12 @@ class PathMapper(object):
}
if path.startswith('test/runner/'):
if dirname == 'test/runner' and name in (
'Dockerfile',
'.dockerignore',
):
return minimal # not used by tests, only used to build the default container
return all_tests(self.args) # test infrastructure, run all tests
if path.startswith('test/utils/shippable/'):