Skip to content

Commit

Permalink
Fix some incorrect skips
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Tatarintsev committed Dec 7, 2023
1 parent d1fab86 commit 9b7a105
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,16 @@ mod isb {
Ok(())
}

#[connector_test(exclude(
MongoDb,
Postgres("pg.js.wasm"),
Postgres("neon.js.wasm"),
Sqlite("libsql.js.wasm"),
Vitess("planetscale.js.wasm")
))]
#[connector_test(
capabilities(FullTextSearchWithoutIndex),
exclude(
MongoDb,
Postgres("pg.js.wasm"),
Postgres("neon.js.wasm"),
Sqlite("libsql.js.wasm"),
Vitess("planetscale.js.wasm")
)
)]
async fn order_by_relevance_should_fail(runner: Runner) -> TestResult<()> {
create_test_data(&runner).await?;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,7 @@ use query_engine_tests::*;
mod null_list {
use query_engine_tests::{fmt_query_raw, run_query, run_query_pretty};

#[connector_test(
schema(common_list_types),
exclude(
Postgres("pg.js.wasm", "neon.js.wasm"),
Sqlite("libsql.js.wasm"),
Vitess("planetscale.js.wasm")
)
)]
#[connector_test(schema(common_list_types), exclude(Postgres("pg.js.wasm", "neon.js.wasm"),))]
async fn null_scalar_lists(runner: Runner) -> TestResult<()> {
run_query!(
&runner,
Expand Down

0 comments on commit 9b7a105

Please sign in to comment.