Skip to content

Commit

Permalink
Add Test runs for Python 3.7 and remove 3.4 (#5295)
Browse files Browse the repository at this point in the history
* remove 3.4 from unit test runs

* add 3.7 to most packages. PubSub, Monitoring, BigQuery not enabled

* Fix #5292 by draining queue in a way compatible with SimpleQueue and Queue
  • Loading branch information
crwilcox committed May 4, 2018
1 parent a8be180 commit 57002c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/google-cloud-websecurityscanner/nox.py
Expand Up @@ -51,7 +51,7 @@ def default(session):


@nox.session
@nox.parametrize('py', ['2.7', '3.4', '3.5', '3.6'])
@nox.parametrize('py', ['2.7', '3.5', '3.6', '3.7'])
def unit(session, py):
"""Run the unit test suite."""

Expand Down

0 comments on commit 57002c6

Please sign in to comment.