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 5928476 commit ce571d3Copy full SHA for ce571d3
.buildkite/pipeline_jax.yml
@@ -236,8 +236,13 @@ steps:
236
queue: tpu_v6e_8_queue
237
commands:
238
- |
239
- .buildkite/scripts/run_in_docker.sh \
240
- bash -c 'python3 -m pytest -s -v -x /workspace/tpu_inference/tests/lora/test_layers.py'
+ if [[ "$$NIGHTLY" == "1" ]]; then
+ .buildkite/scripts/run_in_docker.sh \
241
+ bash -c 'python3 -m pytest -s -v -x /workspace/tpu_inference/tests/lora/test_layers.py'
242
+ else
243
+ echo "Skipping: NIGHTLY environment variable not set"
244
+ exit 0
245
+ fi
246
# -----------------------------------------------------------------
247
# NOTIFICATION STEP
248
0 commit comments