summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-06-27 08:56:45 +0200
committerChristian Breunig <christian@breunig.cc>2024-06-27 08:57:22 +0200
commit93e6e6ce744f0fe9fd0bd14b0663d8e8cee22acb (patch)
tree94606c7147875547465a71823e1219973dc9f88b
parent8e633a944aa64f8507afc85e0b548cc0b1ed997a (diff)
downloadvyos-1x-93e6e6ce744f0fe9fd0bd14b0663d8e8cee22acb.tar.gz
vyos-1x-93e6e6ce744f0fe9fd0bd14b0663d8e8cee22acb.zip
smoketest: T6510: remove build time test to check for /dev/input/event0
The container used for the Jenkins package builds does not provide a /dev/input/event0 file, thus the build time test fails. Remove the test case as it's not mandatory.
-rw-r--r--src/tests/test_find_device_file.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/tests/test_find_device_file.py b/src/tests/test_find_device_file.py
index 21fc113f9..5b90f2034 100644
--- a/src/tests/test_find_device_file.py
+++ b/src/tests/test_find_device_file.py
@@ -26,8 +26,5 @@ class TestDeviceFile(TestCase):
def test_zero(self):
self.assertEqual(find_device_file('zero'), '/dev/zero')
- def test_input_event(self):
- self.assertEqual(find_device_file('event0'), '/dev/input/event0')
-
def test_non_existing(self):
self.assertFalse(find_device_file('vyos'))