We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b8b654 commit 933d248Copy full SHA for 933d248
.buildkite/pipeline_jax.yml
@@ -229,8 +229,13 @@ steps:
229
queue: tpu_v6e_8_queue
230
commands:
231
- |
232
- .buildkite/scripts/run_in_docker.sh \
233
- bash -c 'python3 -m pytest -s -v -x /workspace/tpu_inference/tests/e2e/test_data_parallel.py'
+ if [[ "$$NIGHTLY" == "1" ]]; then
+ .buildkite/scripts/run_in_docker.sh \
234
+ bash -c 'python3 -m pytest -s -v -x /workspace/tpu_inference/tests/e2e/test_data_parallel.py'
235
+ else
236
+ echo "Skipping: NIGHTLY environment variable not set"
237
+ exit 0
238
+ fi
239
240
- label: "lora unit tests on single chip"
241
key: test_15
0 commit comments