mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-14 02:10:21 +00:00
24 lines
633 B
Plaintext
24 lines
633 B
Plaintext
startup --expand_configs_in_place
|
|
|
|
# Show us information about failures.
|
|
build --verbose_failures
|
|
test --test_output=errors
|
|
|
|
# Include git version info
|
|
build --workspace_status_command hack/print-workspace-status.sh
|
|
|
|
# Make /tmp hermetic
|
|
build --sandbox_tmpfs_path=/tmp
|
|
|
|
# Ensure that Bazel never runs as root, which can cause unit tests to fail.
|
|
# This flag requires Bazel 0.5.0+
|
|
build --sandbox_fake_username
|
|
|
|
# Enable go race detection.
|
|
test:unit --features=race
|
|
test:unit --test_tag_filters=-e2e,-integration
|
|
test:unit --flaky_test_attempts=3
|
|
|
|
test:integration --local_test_jobs 4
|
|
test:integration --test_tag_filters=integration
|