__main__.py 309 B

123456789101112
  1. # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. """Run unit tests. This is invoked by:
  5. $ python -m psutil.tests.
  6. """
  7. from psutil.tests import pytest
  8. pytest.main(["-v", "-s", "--tb=short"])