File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ zip = { git = "https://github.com/zip-rs/zip" }
59
59
[dev-dependencies ]
60
60
maplit = " 1.0.2"
61
61
rstest = " 0.15.0"
62
+ serial_test = { version = " 0.9.0" , default-features = false }
62
63
63
64
[package .metadata .parseable_ui ]
64
65
assets-url = " https://github.com/parseablehq/frontend/releases/download/v0.0.1/build.zip"
Original file line number Diff line number Diff line change @@ -181,6 +181,7 @@ mod tests {
181
181
use super :: * ;
182
182
use maplit:: hashmap;
183
183
use rstest:: * ;
184
+ use serial_test:: serial;
184
185
185
186
#[ rstest]
186
187
#[ case:: zero( 0 , 0 , 0 ) ]
@@ -226,6 +227,7 @@ mod tests {
226
227
#[ rstest]
227
228
#[ case:: stream_schema_alert( "teststream" , "schema" , "alert_config" ) ]
228
229
#[ case:: stream_only( "teststream" , "" , "" ) ]
230
+ #[ serial]
229
231
fn test_add_stream (
230
232
#[ case] stream_name : String ,
231
233
#[ case] schema : String ,
@@ -249,6 +251,7 @@ mod tests {
249
251
250
252
#[ rstest]
251
253
#[ case:: stream_only( "teststream" ) ]
254
+ #[ serial]
252
255
fn test_delete_stream ( #[ case] stream_name : String ) {
253
256
clear_map ( ) ;
254
257
STREAM_INFO
You can’t perform that action at this time.
0 commit comments