Skip to content

Commit

Permalink
update excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolg42 committed Feb 12, 2024
1 parent ba96da9 commit 767647b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Expand Up @@ -1300,7 +1300,7 @@ fn bigint_defaults_work(api: TestApi) {
}

// regression test for https://github.com/prisma/prisma/issues/20557
#[test_connector(tags(CockroachDb), exclude(CockroachDb231))]
#[test_connector(tags(CockroachDb), exclude(CockroachDb231, CockroachDb232))]
fn alter_type_works(api: TestApi) {
let schema = r#"
datasource db {
Expand Down
@@ -1,6 +1,6 @@
use sql_migration_tests::test_api::*;

#[test_connector(tags(CockroachDb), exclude(CockroachDb231))]
#[test_connector(tags(CockroachDb), exclude(CockroachDb231, CockroachDb232))]
fn failing_migration_after_migration_dropping_data(api: TestApi) {
let migrations = &[
r#"
Expand Down Expand Up @@ -49,7 +49,7 @@ fn failing_migration_after_migration_dropping_data(api: TestApi) {
expectation.assert_eq(&err);
}

#[test_connector(tags(CockroachDb), exclude(CockroachDb231))]
#[test_connector(tags(CockroachDb), exclude(CockroachDb231, CockroachDb232))]
fn failing_step_in_migration_dropping_data(api: TestApi) {
let migrations = &[
r#"
Expand Down Expand Up @@ -97,7 +97,7 @@ fn failing_step_in_migration_dropping_data(api: TestApi) {
}

// Skipped on CRDB 23.1 because of https://github.com/prisma/prisma/issues/20851
#[test_connector(tags(CockroachDb), exclude(CockroachDb231))]
#[test_connector(tags(CockroachDb), exclude(CockroachDb231, CockroachDb232))]
fn multiple_alter_tables_in_one_migration_works(api: TestApi) {
let migrations = &[
r#"
Expand Down Expand Up @@ -171,7 +171,7 @@ fn multiple_alter_tables_in_multiple_migration_works(api: TestApi) {
api.apply_migrations(&dir).send_sync();
}

#[test_connector(tags(CockroachDb), exclude(CockroachDb231))]
#[test_connector(tags(CockroachDb), exclude(CockroachDb231, CockroachDb232))]
fn syntax_errors_return_error_position(api: TestApi) {
let migrations = &[r#"
CREATE TABLE "Dog" (
Expand Down

0 comments on commit 767647b

Please sign in to comment.