Skip to content

Commit 22215af

Browse files
author
Wei
committed
Updated config.yml
1 parent ec0b309 commit 22215af

File tree

1 file changed

+23
-22
lines changed

1 file changed

+23
-22
lines changed

.circleci/config.yml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -50,30 +50,31 @@ jobs:
5050
- run:
5151
name: run tests
5252
command: |
53-
cd py/torch_tensorrt/fx
54-
pushd test/converters/acc_op
55-
pytest
56-
popd
57-
pushd test/passes
58-
list_passes=$(ls | grep -v test_setitem*)
59-
pytest $list_passes
60-
popd
61-
pushd test/core
62-
pytest
63-
popd
64-
# pushd test/quant
53+
cd py/torch_tensorrt/fx/test
54+
pytest $(find . -name '*.py' | grep -v test_dispatch* | grep -v test_setitem*)
55+
# pushd test/converters/acc_op
56+
# pytest
57+
# popd
58+
# pushd test/passes
59+
# list_passes=$(ls | grep -v test_setitem*)
60+
# pytest $list_passes
61+
# popd
62+
# pushd test/core
63+
# pytest
64+
# popd
65+
# # pushd test/quant
66+
# # pytest
67+
# # popd
68+
# pushd test/tools
69+
# pytest
70+
# popd
71+
# pushd test/trt_lower
6572
# pytest
6673
# popd
67-
pushd test/tools
68-
pytest
69-
popd
70-
pushd test/trt_lower
71-
pytest
72-
popd
73-
pushd test/tracer
74-
list_tracer=$(ls | grep -v test_dispatch_*)
75-
pytest $list_tracer
76-
popd
74+
# pushd test/tracer
75+
# list_tracer=$(ls | grep -v test_dispatch_*)
76+
# pytest $list_tracer
77+
# popd
7778
# Invoke jobs via workflows
7879
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
7980
workflows:

0 commit comments

Comments
 (0)