Skip to content

Commit 19439b1

Browse files
committed
(DELETE) run only subscriber permission system test
1 parent 0d531e7 commit 19439b1

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

pubsub/noxfile.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,15 @@ def system(session):
120120

121121
# Run py.test against the system tests.
122122
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)
123+
session.run(
124+
"py.test",
125+
"--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)
126132

127133

128134
@nox.session(python="3.7")

0 commit comments

Comments
 (0)