Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ras/ras_lsvpd: Remove avocado version check #2766

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions ras/ras_lsvpd.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,11 +349,6 @@ def test_pci_lscfg(self):
'''
Capture data from lscfg and lspci then compare data
'''
# get_pci_info() routine is available with avocado v99.0
# Add a check for the same to cancel the test.
avocado_ver = os.environ['AVOCADO_VERSION']
if avocado_ver < '99.0':
self.cancel("Test requires Avocado v99.0+ test runner")
error = []
for pci_addr in pci.get_pci_addresses():
self.log.info("Checking for PCI Address: %s\n\n", pci_addr)
Expand Down
Loading