We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f3add commit 2f96c2aCopy full SHA for 2f96c2a
.circleci/config.yml
@@ -583,10 +583,10 @@ commands:
583
- run:
584
name: Run FX converter tests
585
command: |
586
+ set -e
587
cd py/torch_tensorrt/fx/test
- pushd converters/aten_op/
588
- pytest --junitxml=/tmp/artifacts/test_results/fx/converters/aten_op/test_results.xml
589
- popd
+ TESTS_TO_RUN=$(circleci tests glob "converters/aten_op/test_*.py" | circleci tests split --split-by=timings)
+ pytest --junitxml=/tmp/artifacts/test_results/fx/converters/aten_op/test_results.xml $TESTS_TO_RUN
590
591
- store_test_results:
592
path: /tmp/artifacts
0 commit comments