Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c8c88bc

Browse files
author
Lucas McDonald
committedApr 16, 2025·
m
1 parent 2387899 commit c8c88bc

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed
 

‎TestVectors/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,12 @@ _sed_types_file_add_extern:
147147

148148
test_python_client_interface:
149149
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
151151

152152
test_python_resource_interface:
153153
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
155155

156156
test_python_table_interface:
157157
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

‎TestVectors/runtimes/python/tox.ini

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,15 @@ commands_pre =
1212
poetry install
1313
commands =
1414
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

0 commit comments

Comments
 (0)
Please sign in to comment.