run_tests.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #!/usr/bin/env python3
  2. # Copyright (c) 2020 Nordic Semiconductor ASA
  3. #
  4. # SPDX-License-Identifier: Apache-2.0
  5. # A convenience script provided for running tests on the runners
  6. # package. Runs mypy and pytest. Any extra arguments in sys.argv are
  7. # passed along to pytest.
  8. #
  9. # Using tox was considered, but rejected as overkill for now.
  10. #
  11. # We would have to configure tox to create the test virtualenv with
  12. # all of zephyr's scripts/requirements.txt, which seems like too much
  13. # effort for now. We just run in the same Python environment as the
  14. # user for developer testing and trust CI to set that environment up
  15. # properly for integration testing.
  16. #
  17. # If this file starts to reimplement too many features that are
  18. # already available in tox, we can revisit this decision.
  19. import os
  20. import shlex
  21. import subprocess
  22. import sys
  23. here = os.path.abspath(os.path.dirname(__file__))
  24. mypy = [sys.executable, '-m', 'mypy', f'--config-file={here}/mypy.ini',
  25. '--package', 'runners']
  26. pytest = [sys.executable, '-m', 'pytest'] + sys.argv[1:]
  27. print(f'Running mypy from {here}:\n\t' +
  28. ' '.join(shlex.quote(s) for s in mypy),
  29. flush=True)
  30. subprocess.run(mypy, check=True, cwd=here)
  31. print(f'Running pytest from {here}:\n\t' +
  32. ' '.join(shlex.quote(s) for s in pytest),
  33. flush=True)
  34. subprocess.run(pytest, check=True, cwd=here)