8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edfefc8 commit 0a175d6Copy full SHA for 0a175d6
.github/workflows/integration-tests-against-emulator.yaml
@@ -0,0 +1,32 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - master
5
+ pull_request:
6
+name: Run Spanner integration tests against emulator
7
+jobs:
8
+ system-tests:
9
+ runs-on: ubuntu-latest
10
+
11
+ services:
12
+ emulator:
13
+ image: gcr.io/cloud-spanner-emulator/emulator:latest
14
+ ports:
15
+ - 9010:9010
16
+ - 9020:9020
17
18
+ steps:
19
+ - name: Checkout code
20
+ uses: actions/checkout@v2
21
+ - name: Setup Python
22
+ uses: actions/setup-python@v2
23
+ with:
24
+ python-version: 3.7
25
+ - name: Install nox
26
+ run: python -m pip install nox
27
+ - name: Run system tests
28
+ run: nox -s system-3.7
29
+ env:
30
+ SPANNER_EMULATOR_HOST: localhost:9010
31
+ GOOGLE_CLOUD_PROJECT: emulator-test-project
32
+ GOOGLE_CLOUD_TESTS_CREATE_SPANNER_INSTANCE: true
0 commit comments