You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
341 B
11 lines
341 B
import sys
|
|
|
|
if 'have_opt_viewer_modules' not in config.available_features:
|
|
config.unsupported = True
|
|
|
|
# Windows has different multiprocessing behavior than non-Windows, which causes
|
|
# all of the tests to fail presently under Windows. Disable this until those
|
|
# can be resolved.
|
|
if sys.platform == 'win32':
|
|
config.unsupported = True
|