Skip to content

Commit 672e534

Browse files
committed
Add nox sessions for system tests
This just adds the nox session decorators so you can run the system tests with ``` cd packages/google-cloud-ndb nox -s emulator_system ``` The actual system tests don't pass, though. See also #15866 (comment)
1 parent 2e508b6 commit 672e534

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/google-cloud-ndb/noxfile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,13 @@ def cover(session):
189189
session.run("coverage", "erase")
190190

191191

192+
@nox.session(python=ALL_INTERPRETERS)
192193
def old_emulator_system(session):
193194
emulator_args = ["gcloud", "beta", "emulators", "datastore", "start"]
194195
_run_emulator(session, emulator_args)
195196

196197

198+
@nox.session(python=ALL_INTERPRETERS)
197199
def emulator_system(session):
198200
emulator_args = [
199201
"gcloud",

0 commit comments

Comments
 (0)