aboutsummaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorDmitrii Agibov <dmitrii.agibov@arm.com>2022-10-04 15:18:55 +0100
committerDmitrii Agibov <dmitrii.agibov@arm.com>2022-10-04 15:34:38 +0100
commit366ac7437383d3e9a99a971e61afbc5c466bbfcc (patch)
tree8fca425ad9f03817391bdc1ca9c6dfdc9dc44489 /tests/conftest.py
parent2d6ec94a2a085e7fa4fc23c4c7dcda3206eec98c (diff)
downloadmlia-366ac7437383d3e9a99a971e61afbc5c466bbfcc.tar.gz
MLIA-673 Use inclusive language in the source code and filenames
- Update configuration for inclusive language linter - Fix reported issues Change-Id: If0f8b6e20c17d8ee1c6179c61040fc351437f036
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 4d12033..1cb3dcd 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -24,9 +24,9 @@ def fixture_test_resources_path() -> Path:
return Path(__file__).parent / "test_resources"
-@pytest.fixture(name="dummy_context")
-def fixture_dummy_context(tmpdir: str) -> ExecutionContext:
- """Return dummy context fixture."""
+@pytest.fixture(name="sample_context")
+def fixture_sample_context(tmpdir: str) -> ExecutionContext:
+ """Return sample context fixture."""
return ExecutionContext(working_dir=tmpdir)
@@ -44,19 +44,19 @@ def test_applications_path(test_resources_path: Path) -> Path:
@pytest.fixture(scope="session")
def non_optimised_input_model_file(test_tflite_model: Path) -> Path:
- """Provide the path to a quantized dummy model file."""
+ """Provide the path to a quantized test model file."""
return test_tflite_model
@pytest.fixture(scope="session")
def optimised_input_model_file(test_tflite_vela_model: Path) -> Path:
- """Provide path to Vela-optimised dummy model file."""
+ """Provide path to Vela-optimised test model file."""
return test_tflite_vela_model
@pytest.fixture(scope="session")
def invalid_input_model_file(test_tflite_invalid_model: Path) -> Path:
- """Provide the path to an invalid dummy model file."""
+ """Provide the path to an invalid test model file."""
return test_tflite_invalid_model