Skip to content

Commit 74dc4a2

Browse files
authored
Enable interpreter tests from test_line_info.py (#2304)
Closes #2308 Pass rate: `98.25%` -> `98.28%` for LTS --------- Signed-off-by: Anatoly Myachev <[email protected]>
1 parent 95def77 commit 74dc4a2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/test-triton.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ run_core_tests() {
188188

189189
# run test_line_info.py separately with TRITON_DISABLE_LINE_INFO=0
190190
TRITON_DISABLE_LINE_INFO=0 TRITON_TEST_SUITE=line_info \
191-
pytest --verbose --device xpu language/test_line_info.py
191+
pytest -k "not test_line_info_interpreter" --verbose --device xpu language/test_line_info.py
192192
}
193193

194194
run_regression_tests() {
@@ -210,6 +210,9 @@ run_interpreter_tests() {
210210
TRITON_INTERPRET=1 TRITON_TEST_SUITE=interpreter \
211211
pytest -vvv -n 16 -m interpreter language/test_core.py language/test_standard.py \
212212
language/test_random.py --device cpu
213+
214+
TRITON_DISABLE_LINE_INFO=0 TRITON_INTERPRET=1 TRITON_TEST_SUITE=interpreter_line_info \
215+
pytest -vvv -n 4 -m interpreter language/test_line_info.py --device cpu
213216
}
214217

215218
run_tutorial_tests() {

0 commit comments

Comments
 (0)