Skip to content

Commit 9b78101

Browse files
authored
Fix: Fix the plugin test failure in CI (#3417)
1 parent 5100388 commit 9b78101

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/build-test-linux.yml

+2
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ jobs:
140140
python -m pip install -r requirements.txt
141141
cd dynamo
142142
python -m pytest -ra --junitxml=${RUNNER_TEST_RESULTS_DIR}/dynamo_converters_test_results.xml -n 4 conversion/
143+
python -m pytest -ra --junitxml=${RUNNER_TEST_RESULTS_DIR}/dynamo_converters_test_results.xml automatic_plugin/test_automatic_plugin.py
144+
python -m pytest -ra --junitxml=${RUNNER_TEST_RESULTS_DIR}/dynamo_converters_test_results.xml automatic_plugin/test_automatic_plugin_with_attrs.py
143145
popd
144146
145147
tests-py-dynamo-fe:

tests/py/dynamo/automatic_plugin/__init__.py

Whitespace-only changes.

tests/py/dynamo/conversion/test_automatic_plugin.py tests/py/dynamo/automatic_plugin/test_automatic_plugin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from parameterized import parameterized
99
from torch.testing._internal.common_utils import run_tests
1010

11-
from .harness import DispatchTestCase
11+
from ..conversion.harness import DispatchTestCase
1212

1313

1414
@triton.jit

tests/py/dynamo/conversion/test_automatic_plugin_with_attrs.py tests/py/dynamo/automatic_plugin/test_automatic_plugin_with_attrs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from parameterized import parameterized
99
from torch.testing._internal.common_utils import run_tests
1010

11-
from .harness import DispatchTestCase
11+
from ..conversion.harness import DispatchTestCase
1212

1313

1414
@triton.jit

0 commit comments

Comments
 (0)