"packaging/vscode:/vscode.git/clone" did not exist on "5f0edb97b46e5bff71dc19dedef05c5396eeaea2"
Unverified Commit b7c17f80 authored by moto's avatar moto Committed by GitHub
Browse files

Skip failing tests on macOS Python 3.6/3.7 (#970) (#999)

parent 538e5605
import sys
import platform
from unittest import skipIf
from typing import List, Tuple
import numpy as np
......@@ -68,6 +71,13 @@ def init_random_seed(worker_id):
@skipIfNoExtension
@skipIf(
platform.system() == 'Darwin' and
sys.version_info.major == 3 and
sys.version_info.minor in [6, 7],
'This test is known to get stuck for macOS with Python < 3.8. '
'See https://github.com/pytorch/pytorch/issues/46409'
)
class TestSoxEffectsDataset(TempDirMixin, PytorchTestCase):
"""Test `apply_effects_file` in multi-process dataloader setting"""
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment