Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

[gapic-generator] chore: remove 2.7 from python showcase tests #3229

Merged
merged 2 commits into from
Jun 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 0 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,12 @@ anchor_verify_and_test_python: &anchor_verify_and_test_python
- run:
name: Run Showcase Generated Unit Tests.
command: |
nox --session "unit(py='2.7')" \
--noxfile /tmp/workspace/gapic-generator/showcase/python/nox.py
nox --session "unit(py='3.6')" \
--noxfile /tmp/workspace/gapic-generator/showcase/python/nox.py
when: always
- run:
name: Run Showcase Integration Tests.
command: |
nox --session "showcase(py='2.7')" \
--noxfile /tmp/workspace/gapic-generator/showcase/python/nox.py
nox --session "showcase(py='3.6')" \
--noxfile /tmp/workspace/gapic-generator/showcase/python/nox.py
when: always
Expand Down
4 changes: 2 additions & 2 deletions showcase/python/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""

Expand All @@ -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."""

Expand Down