File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,17 @@ jobs:
48
48
timeBetweenPhases : 30
49
49
shutdownTime : 30
50
50
51
- language_id0 : sync
52
- language0 : python-sync
51
+ language_id0 : sync-table
52
+ language0 : Python SDK over Table Service
53
53
workload_path0 : tests/slo
54
54
workload_build_context0 : ../..
55
- workload_build_options0 : -f Dockerfile
55
+ workload_build_options0 : -f Dockerfile --build-arg SDK_SERVICE=table-service
56
+
57
+ language_id1 : sync-query
58
+ language1 : Python SDK over Query Service
59
+ workload_path1 : tests/slo
60
+ workload_build_context1 : ../..
61
+ workload_build_options1 : -f Dockerfile --build-arg SDK_SERVICE=query-service
56
62
57
63
- uses : actions/upload-artifact@v3
58
64
if : env.DOCKER_REPO != null
Original file line number Diff line number Diff line change @@ -3,5 +3,6 @@ COPY . /src
3
3
WORKDIR /src
4
4
RUN python -m pip install --upgrade pip && python -m pip install -e . && python -m pip install -r tests/slo/requirements.txt
5
5
WORKDIR tests/slo
6
+ ARG SDK_SERVICE
6
7
7
8
ENTRYPOINT ["python" , "src" ]
You can’t perform that action at this time.
0 commit comments