Skip to content

Commit

Permalink
exclude d1 from some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Weakky committed Apr 29, 2024
1 parent 2f105fd commit 31c187d
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -232,7 +232,8 @@ mod create_many {
// Covers: Batching by row number.
// Each DB allows a certain amount of params per single query, and a certain number of rows.
// Each created row has 1 param and we create 1000 records.
#[connector_test(schema(schema_4))]
// TODO: unexclude d1 once https://github.com/prisma/team-orm/issues/1070 is fixed
#[connector_test(schema(schema_4), exclude(Sqlite("cfd1")))]
async fn large_num_records_horizontal(runner: Runner) -> TestResult<()> {
let mut records: Vec<String> = vec![];

Expand Down Expand Up @@ -276,7 +277,8 @@ mod create_many {
// Covers: Batching by row number.
// Each DB allows a certain amount of params per single query, and a certain number of rows.
// Each created row has 4 params and we create 1000 rows.
#[connector_test(schema(schema_5))]
// TODO: unexclude d1 once https://github.com/prisma/team-orm/issues/1070 is fixed
#[connector_test(schema(schema_5), exclude(Sqlite("cfd1")))]
async fn large_num_records_vertical(runner: Runner) -> TestResult<()> {
let mut records: Vec<String> = vec![];

Expand Down

0 comments on commit 31c187d

Please sign in to comment.