Skip to content
Snippets Groups Projects
Verified Commit e9f4a095 authored by Karel Koci's avatar Karel Koci :metal:
Browse files

selftests: check if devices are on system

This is just test that checks that we have all required devices on host
system. These devices are optional and additional modules are requires
to be installed and loaded to kernel.

At the moment only the /dev/ppp is tested there.
parent f9b7d7dc
No related branches found
No related tags found
1 merge request!4Add ability to pass character devices to containers
import pytest
import pathlib
@pytest.mark.parametrize("device", [
"/dev/ppp",
])
def test_local_device(device):
"""Check that we have local device required for testing.
"""
assert pathlib.Path(device).exists()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment