Skip to content

Commit d07f426

Browse files
committed
rename as unit
1 parent 26011f5 commit d07f426

28 files changed

+95
-110
lines changed

clients/python/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ test-dev: _check_venv_active ## runs tests during development
140140
--failed-first \
141141
--durations=10 \
142142
--pdb \
143-
$(CLIENTS_PYTHON_DIR)/test/test_osparc
143+
$(CLIENTS_PYTHON_DIR)/test/unit
144144

145145

146146

clients/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Changes to the client should not be performed within the generated python code,
1717
*Please do not manually `git commit` auto generated code into this repository*
1818

1919
# Testing
20-
Tests are located in `PYDIR/test_osparc` and `PYDIR/test_osparc_client`. They can be run by executing the following commands from PYDIR:
20+
Tests are located in `PYDIR/unit` and `PYDIR/test_osparc_client`. They can be run by executing the following commands from PYDIR:
2121
```bash
2222
make install-test
2323
make test-dev

clients/python/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ required_plugins = "pytest-asyncio"
4141
line-length = 88 # This should match Black's default line length
4242

4343
[tool.ruff.lint]
44-
select = [
45-
# isort
46-
"I"
47-
]
44+
select = [
45+
# isort
46+
"I"
47+
]
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
osparc.io web API
4+
osparc.io web API
55
6-
osparc-simcore public web API specifications # noqa: E501
6+
osparc-simcore public web API specifications # noqa: E501
77
8-
The version of the OpenAPI document: 0.4.0
9-
Generated by: https://openapi-generator.tech
8+
The version of the OpenAPI document: 0.4.0
9+
Generated by: https://openapi-generator.tech
1010
"""
1111

12-
1312
from __future__ import absolute_import
1413

1514
import unittest

clients/python/test/test_osparc/test_osparc_client/test_file.py renamed to clients/python/test/unit/test_osparc_client/test_file.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
osparc.io web API
4+
osparc.io web API
55
6-
osparc-simcore public web API specifications # noqa: E501
6+
osparc-simcore public web API specifications # noqa: E501
77
8-
The version of the OpenAPI document: 0.4.0
9-
Generated by: https://openapi-generator.tech
8+
The version of the OpenAPI document: 0.4.0
9+
Generated by: https://openapi-generator.tech
1010
"""
1111

12-
1312
from __future__ import absolute_import
1413

1514
import unittest

0 commit comments

Comments
 (0)