Skip to content

Commit

Permalink
add test-process-all winmake target
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Jan 7, 2024
1 parent 4065dd5 commit 9a400de
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/internal/winmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,12 @@ def test_process():
sh("%s psutil\\tests\\test_process.py" % PYTHON)


def test_process_all():
"""Run process all tests."""
build()
sh("%s psutil\\tests\\test_process_all.py" % PYTHON)


def test_system():
"""Run system tests."""
build()
Expand Down Expand Up @@ -571,6 +577,7 @@ def parse_args():
sp.add_parser('test-misc', help="run misc tests")
sp.add_parser('test-platform', help="run windows only tests")
sp.add_parser('test-process', help="run process tests")
sp.add_parser('test-process-all', help="run process all tests")
sp.add_parser('test-system', help="run system tests")
sp.add_parser('test-unicode', help="run unicode tests")
sp.add_parser('test-testutils', help="run test utils tests")
Expand Down

0 comments on commit 9a400de

Please sign in to comment.