diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-11-11 16:26:42 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 12:21:33 -0800 |
commit | 879f021a0247c2978074044d99c91ca5f4aaf583 (patch) | |
tree | ec8baa5011eccdbbf852d29ca6358076f29fc16f /host/tests/devtest/devtest_x3x0.py | |
parent | e0a40fd1d76c66e9374129536b7b10b76abad5f8 (diff) | |
download | uhd-879f021a0247c2978074044d99c91ca5f4aaf583.tar.gz uhd-879f021a0247c2978074044d99c91ca5f4aaf583.tar.bz2 uhd-879f021a0247c2978074044d99c91ca5f4aaf583.zip |
devtest: Add test_messages_test to X310
- Fixes issues with test_messages_test (it had inverted the pass/fail
condition)
- Improve Pylint scores in affected files
Diffstat (limited to 'host/tests/devtest/devtest_x3x0.py')
-rwxr-xr-x | host/tests/devtest/devtest_x3x0.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/host/tests/devtest/devtest_x3x0.py b/host/tests/devtest/devtest_x3x0.py index c928d793d..d7390f8f2 100755 --- a/host/tests/devtest/devtest_x3x0.py +++ b/host/tests/devtest/devtest_x3x0.py @@ -8,6 +8,8 @@ Run device tests for the X3x0 series. """ +# pylint: disable=wrong-import-position +# pylint: disable=unused-import from benchmark_rate_test import uhd_benchmark_rate_test uhd_benchmark_rate_test.tests = { 'mimo_slow': { @@ -67,4 +69,4 @@ from test_pps_test import uhd_test_pps_test from gpio_test import gpio_test from bitbang_test import bitbang_test from list_sensors_test import list_sensors_test - +from test_messages_test import test_messages_test |