We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d531e7 commit 19439b1Copy full SHA for 19439b1
pubsub/noxfile.py
@@ -120,9 +120,15 @@ def system(session):
120
121
# Run py.test against the system tests.
122
if system_test_exists:
123
- session.run("py.test", "--quiet", system_test_path, *session.posargs)
124
- if system_test_folder_exists:
125
- session.run("py.test", "--quiet", system_test_folder_path, *session.posargs)
+ session.run(
+ "py.test",
+ "--quiet",
126
+ "-k test_streaming_pull_subscriber_permissions_sufficient",
127
+ system_test_path,
128
+ *session.posargs,
129
+ )
130
+ # if system_test_folder_exists:
131
+ # session.run("py.test", "--quiet", system_test_folder_path, *session.posargs)
132
133
134
@nox.session(python="3.7")
0 commit comments