Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Lib/test/libregrtest/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@

tzdata - Run tests that require timezone data.

idle - Run tests that require an otherwise idle system as
they are sensitive to timing.

To enable all resources except one, use '-uall,-<resource>'. For
example, to run all the tests except for the gui tests, give the
option '-uall,-gui'.
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/libregrtest/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@


ALL_RESOURCES = ('audio', 'curses', 'largefile', 'network',
'decimal', 'cpu', 'subprocess', 'urlfetch', 'gui', 'walltime')
'decimal', 'cpu', 'subprocess', 'urlfetch', 'gui', 'walltime', 'idle')

# Other resources excluded from --use=all:
#
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Add the ``idle`` resource for flagging tests that need an idle system as
they're sensitive to timing.
Loading