Commit c035595 1 parent ef6ce37 commit c035595 Copy full SHA for c035595
File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,17 @@ use crate::{
30
30
#[ cfg_attr( feature = "async-std-runtime" , async_std:: test) ]
31
31
async fn run_unified ( ) {
32
32
let _guard: RwLockWriteGuard < ( ) > = LOCK . run_exclusively ( ) . await ;
33
+
34
+ // TODO RUST-1414: unskip this file
35
+ let mut skipped_files = vec ! [ "implicit-sessions-default-causal-consistency.json" ] ;
36
+ let client = TestClient :: new ( ) . await ;
37
+ if client. is_sharded ( ) && client. server_version_gte ( 7 , 0 ) {
38
+ // TODO RUST-1666: unskip this file
39
+ skipped_files. push ( "snapshot-sessions.json" ) ;
40
+ }
41
+
33
42
run_unified_tests ( & [ "sessions" ] )
34
- // TODO RUST-1414: unskip this file
35
- . skip_files ( vec ! [ "implicit-sessions-default-causal-consistency.json" ] )
43
+ . skip_files ( skipped_files)
36
44
. await ;
37
45
}
38
46
You can’t perform that action at this time.
0 commit comments