Skip to content

Commit

Permalink
(DELETE) run only subscriber permission system test
Browse files Browse the repository at this point in the history
  • Loading branch information
plamut committed Oct 29, 2019
1 parent 80f051a commit 626e057
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pubsub/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,15 @@ def system(session):

# Run py.test against the system tests.
if system_test_exists:
session.run("py.test", "--quiet", system_test_path, *session.posargs)
if system_test_folder_exists:
session.run("py.test", "--quiet", system_test_folder_path, *session.posargs)
session.run(
"py.test",
"--quiet",
"-k test_streaming_pull_subscriber_permissions_sufficient",
system_test_path,
*session.posargs,
)
# if system_test_folder_exists:
# session.run("py.test", "--quiet", system_test_folder_path, *session.posargs)


@nox.session(python="3.7")
Expand Down

0 comments on commit 626e057

Please sign in to comment.