From 99e2d090f7dde1a4a602439e9b7c03013baa36d2 Mon Sep 17 00:00:00 2001 From: Mira Leung Date: Thu, 11 Jun 2020 16:06:26 -0700 Subject: [PATCH] chore: remove 2.7 from python showcase tests It sounds like 2.7 is no longer supported, and it's currently breaking [tests](https://app.circleci.com/pipelines/github/googleapis/gapic-generator/255/workflows/b2063a3b-2ad2-4641-8952-0bc16673a242/jobs/47732/steps) for [this unrelated PR](https://github.com/googleapis/gapic-generator/pull/3190). --- showcase/python/nox.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/showcase/python/nox.py b/showcase/python/nox.py index f2ca30dc00..61efac8e9b 100644 --- a/showcase/python/nox.py +++ b/showcase/python/nox.py @@ -24,7 +24,7 @@ def default(session): @nox.session -@nox.parametrize('py', ['2.7', '3.5', '3.6', '3.7']) +@nox.parametrize('py', ['3.5', '3.6', '3.7']) def showcase(session, py): """Run the showcase integration test suite.""" @@ -48,7 +48,7 @@ def showcase(session, py): @nox.session -@nox.parametrize('py', ['2.7', '3.5', '3.6', '3.7']) +@nox.parametrize('py', ['3.5', '3.6', '3.7']) def unit(session, py): """Run the unit test suite."""