summaryrefslogtreecommitdiff
path: root/test/py/tests
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2021-01-29 13:50:06 -0500
committerTom Rini <[email protected]>2021-01-29 13:50:06 -0500
commit79382e97663c82dabe28e69ff0aa2d2f12131792 (patch)
tree486a33a76338e968e18cef06f626f1c7b45aba9a /test/py/tests
parent07394fb05e4d48fee360ef38c96b3ef0576b7352 (diff)
parent7fd892b21530a60753c48db22f64e3415216faf6 (diff)
Merge branch '2021-01-29-assorted-fixes'
- Assorted test fixes - Assorted minor FAT fixes - Assorted Kconfig dependency fixes - MediaTek, vexpress_aemv8a improvements - Other assorted minor fixes
Diffstat (limited to 'test/py/tests')
-rw-r--r--test/py/tests/test_fs/conftest.py15
-rw-r--r--test/py/tests/test_ofplatdata.py1
2 files changed, 6 insertions, 10 deletions
diff --git a/test/py/tests/test_fs/conftest.py b/test/py/tests/test_fs/conftest.py
index 58e8cd46ee2..ec70e8c4ef3 100644
--- a/test/py/tests/test_fs/conftest.py
+++ b/test/py/tests/test_fs/conftest.py
@@ -243,8 +243,7 @@ def umount_fs(mount_point):
# Fixture for basic fs test
# derived from test/fs/fs-test.sh
#
-# NOTE: yield_fixture was deprecated since pytest-3.0
def fs_obj_basic(request, u_boot_config):
"""Set up a file system to be used in basic fs test.
@@ -352,8 +351,7 @@ def fs_obj_basic(request, u_boot_config):
#
# Fixture for extended fs test
#
-# NOTE: yield_fixture was deprecated since pytest-3.0
def fs_obj_ext(request, u_boot_config):
"""Set up a file system to be used in extended fs test.
@@ -439,8 +437,7 @@ def fs_obj_ext(request, u_boot_config):
#
# Fixture for mkdir test
#
-# NOTE: yield_fixture was deprecated since pytest-3.0
def fs_obj_mkdir(request, u_boot_config):
"""Set up a file system to be used in mkdir test.
@@ -472,8 +469,7 @@ def fs_obj_mkdir(request, u_boot_config):
#
# Fixture for unlink test
#
-# NOTE: yield_fixture was deprecated since pytest-3.0
def fs_obj_unlink(request, u_boot_config):
"""Set up a file system to be used in unlink test.
@@ -538,8 +534,7 @@ def fs_obj_unlink(request, u_boot_config):
#
# Fixture for symlink fs test
#
-# NOTE: yield_fixture was deprecated since pytest-3.0
def fs_obj_symlink(request, u_boot_config):
"""Set up a file system to be used in symlink fs test.
diff --git a/test/py/tests/test_ofplatdata.py b/test/py/tests/test_ofplatdata.py
index d55338e37e6..92d09b7aa19 100644
--- a/test/py/tests/test_ofplatdata.py
+++ b/test/py/tests/test_ofplatdata.py
@@ -4,6 +4,7 @@
import pytest
import u_boot_utils as util
@pytest.mark.buildconfigspec('spl_of_platdata')
def test_spl_devicetree(u_boot_console):
"""Test content of spl device-tree"""