tici tests: remove pytest.main (#31622)

pytest.main is bad!
This commit is contained in:
Justin Newberry 2024-02-27 17:06:18 -05:00 committed by GitHub
parent c05b37979d
commit 19db56b1f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 4 deletions

View File

@ -424,4 +424,4 @@ class TestOnroad(unittest.TestCase):
if __name__ == "__main__":
pytest.main()
unittest.main()

View File

@ -25,4 +25,4 @@ class TestHardware(unittest.TestCase):
if __name__ == "__main__":
pytest.main()
unittest.main()

View File

@ -1,6 +1,5 @@
#!/usr/bin/env python3
from collections import defaultdict, deque
import sys
import pytest
import unittest
import time
@ -132,4 +131,4 @@ class TestPowerDraw(unittest.TestCase):
if __name__ == "__main__":
pytest.main(sys.argv)
unittest.main()