__main__.py 293 B

1234567891011121314
  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. """Run unit tests. This is invoked by:
  6. $ python -m psutil.tests.
  7. """
  8. from .runner import main
  9. main()