Skip to content

Commit 50d117b

Browse files
Fix line length issue in generate_ci_yaml.py
Break KERAS3_LIST into multiple lines to comply with max line length of 125 characters
1 parent 4b165c8 commit 50d117b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

test/pytest/generate_ci_yaml.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,14 @@
2828

2929
# Long-running tests will not be bundled with other tests
3030
LONGLIST = {'test_hgq_layers', 'test_hgq_players', 'test_qkeras', 'test_pytorch_api'}
31-
KERAS3_LIST = {'test_keras_v3_api', 'test_hgq2_mha', 'test_einsum_dense', 'test_qeinsum', 'test_multiout_onnx', 'test_keras_v3_profiling'}
31+
KERAS3_LIST = {
32+
'test_keras_v3_api',
33+
'test_hgq2_mha',
34+
'test_einsum_dense',
35+
'test_qeinsum',
36+
'test_multiout_onnx',
37+
'test_keras_v3_profiling',
38+
}
3239

3340
# Test files to split by individual test cases
3441
# Value = chunk size per CI job

0 commit comments

Comments
 (0)