From ea9f935e9d8749b5f20b06db99ad18728ace7372 Mon Sep 17 00:00:00 2001 From: Aman Arora Date: Mon, 12 Apr 2021 14:18:43 -0400 Subject: [PATCH] Remove resnetv2_101x1_bitm from exclude feat features --- tests/test_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_models.py b/tests/test_models.py index b8db7916..12676917 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -169,7 +169,7 @@ EXCLUDE_FEAT_FILTERS = [ ] if 'GITHUB_ACTIONS' in os.environ: # and 'Linux' in platform.system(): # GitHub Linux runner is slower and hits memory limits sooner than MacOS, exclude bigger models - EXCLUDE_FEAT_FILTERS += ['*resnext101_32x32d', '*resnext101_32x16d', 'resnetv2_101x1_bitm'] + EXCLUDE_FEAT_FILTERS += ['*resnext101_32x32d', '*resnext101_32x16d'] @pytest.mark.timeout(120)