This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/spark-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push:
new 83a5ec5 [SPARK-54814] Set `parallel` to 1 for K8s integration tests
83a5ec5 is described below
commit 83a5ec51234dfbc54d119567a681ea9a3db29dc9
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue Dec 23 14:41:47 2025 +0900
[SPARK-54814] Set `parallel` to 1 for K8s integration tests
### What changes were proposed in this pull request?
This PR aims to set parallel to 1 for K8s integration tests.
### Why are the changes needed?
To run a test individually to isolate its side-effect and help the
debugging in case of failures.
**BEFORE**
```
$ git grep '\-\-parallel'
.github/workflows/build_and_test.yml: chainsaw test --test-dir
./tests/e2e/${{ matrix.test-group }} --parallel 2
.github/workflows/build_and_test.yml: chainsaw test --test-dir
./tests/e2e/${{ matrix.test-group }} --parallel 2
```
**AFTER**
```
$ git grep '\-\-parallel'
.github/workflows/build_and_test.yml: chainsaw test --test-dir
./tests/e2e/${{ matrix.test-group }} --parallel 1
.github/workflows/build_and_test.yml: chainsaw test --test-dir
./tests/e2e/${{ matrix.test-group }} --parallel 1
```
### Does this PR introduce _any_ user-facing change?
No behavior change.
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #444 from dongjoon-hyun/SPARK-54814.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index 8cf40aa..233b3f0 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -132,7 +132,7 @@ jobs:
- name: Run E2E Test with Dynamic Configuration Disabled
if: matrix.mode == 'static'
run: |
- chainsaw test --test-dir ./tests/e2e/${{ matrix.test-group }}
--parallel 2
+ chainsaw test --test-dir ./tests/e2e/${{ matrix.test-group }}
--parallel 1
- name: Run Spark K8s Operator on K8S with Dynamic Configuration Enabled
if: matrix.mode == 'dynamic'
run: |
@@ -146,7 +146,7 @@ jobs:
- name: Run E2E Test with Dynamic Configuration Enabled
if: matrix.mode == 'dynamic'
run: |
- chainsaw test --test-dir ./tests/e2e/${{ matrix.test-group }}
--parallel 2
+ chainsaw test --test-dir ./tests/e2e/${{ matrix.test-group }}
--parallel 1
lint:
name: "Linter and documentation"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]