File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -147,12 +147,12 @@ _sed_types_file_add_extern:
147
147
148
148
test_python_client_interface :
149
149
rm -rf runtimes/python/.tox
150
- python3 -m tox -c runtimes/python --workdir runtimes/python/test/ client
150
+ python3 -m tox -c runtimes/python -e client
151
151
152
152
test_python_resource_interface :
153
153
rm -rf runtimes/python/.tox
154
- python3 -m tox -c runtimes/python --workdir runtimes/python/test/ resource
154
+ python3 -m tox -c runtimes/python -e resource
155
155
156
156
test_python_table_interface :
157
157
rm -rf runtimes/python/.tox
158
- python3 -m tox -c runtimes/python --workdir runtimes/python/test/ table
158
+ python3 -m tox -c runtimes/python -e table
Original file line number Diff line number Diff line change @@ -12,3 +12,15 @@ commands_pre =
12
12
poetry install
13
13
commands =
14
14
poetry run pytest test/ -s -v
15
+
16
+ [testenv:client]
17
+ commands =
18
+ poetry run pytest test/client -s -v
19
+
20
+ [testenv:resource]
21
+ commands =
22
+ poetry run pytest test/resource -s -v
23
+
24
+ [testenv:table]
25
+ commands =
26
+ poetry run pytest test/table -s -v
You can’t perform that action at this time.
0 commit comments