We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d686bb1 commit d58da60Copy full SHA for d58da60
.github/scripts/tests_to_skip.txt
@@ -0,0 +1 @@
1
+test_sharding_fused_ebc_as_top_level
.github/workflows/unittest_ci_cpu.yml
@@ -72,6 +72,8 @@ jobs:
72
python -c "import numpy"
73
echo "numpy succeeded"
74
conda install -n build_binary -y pytest
75
+ skip_expression=$(awk '{printf " and not %s", $0}' ./.github/scripts/tests_to_skip.txt)
76
+ skip_expression=${skip_expression:5} # Remove the leading " and "
77
conda run -n build_binary \
78
python -m pytest torchrec -v -s -W ignore::pytest.PytestCollectionWarning --continue-on-collection-errors \
- --ignore-glob=**/test_utils/
79
+ --ignore-glob=**/test_utils/ -k "$skip_expression"
0 commit comments