__main__.py 291 B

12345678910111213
  1. #!/usr/bin/env python3
  2. # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
  3. # Use of this source code is governed by a BSD-style license that can be
  4. # found in the LICENSE file.
  5. """
  6. Run unit tests. This is invoked by:
  7. $ python -m psutil.tests
  8. """
  9. from .runner import main
  10. main()