Skip to content

Commit 05c8b60

Browse files
committed
Merge branch 'affinity-api' into affinity-db-model
2 parents bd95b03 + 45b993a commit 05c8b60

File tree

162 files changed

+12276
-6764
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+12276
-6764
lines changed

.config/nextest.toml

+10-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# The required version should be bumped up if we need new features, performance
55
# improvements or bugfixes that are present in newer versions of nextest.
6-
nextest-version = { required = "0.9.77", recommended = "0.9.86" }
6+
nextest-version = { required = "0.9.91", recommended = "0.9.91" }
77

88
experimental = ["setup-scripts"]
99

@@ -48,9 +48,18 @@ live-tests = { max-threads = 1 }
4848
[profile.default]
4949
default-filter = 'all() - package(omicron-live-tests) - package(end-to-end-tests)'
5050

51+
[[profile.default.overrides]]
52+
# These tests are quite slow and can hold up the run, so run them first.
53+
filter = 'package(oximeter-db) and test(=client::tests::test_replicated) + test(test_action_failure_can_unwind)'
54+
priority = 20
55+
5156
[[profile.default.overrides]]
5257
filter = 'package(oximeter-db) and test(replicated) + package(omicron-clickhouse-admin)'
5358
test-group = 'clickhouse-cluster'
59+
# client::tests::test_replicated is part of this filter, but it's matched with
60+
# the higher priority (20) first. The other tests in this group are run after
61+
# that.
62+
priority = 10
5463

5564
[[profile.default.overrides]]
5665
# These tests can time out under heavy contention.

.github/buildomat/build-and-test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ target_os=$1
1818
# NOTE: This version should be in sync with the recommended version in
1919
# .config/nextest.toml. (Maybe build an automated way to pull the recommended
2020
# version in the future.)
21-
NEXTEST_VERSION='0.9.86'
21+
NEXTEST_VERSION='0.9.91'
2222

2323
cargo --version
2424
rustc --version

0 commit comments

Comments
 (0)