Skip to content

Commit 8ebfb06

Browse files
committed
fix for tests
1 parent 02888a7 commit 8ebfb06

7 files changed

Lines changed: 12 additions & 0 deletions

File tree

crates/testing/src/loader/test_suite.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,12 @@ fn collect_exo_projects(root_directory: &Path) -> Vec<PathBuf> {
134134
for subdir in dir.read_dir().unwrap().flatten() {
135135
if subdir.path().is_dir() {
136136
let subdir_path = subdir.path();
137+
// Skip directories with .skip suffix
138+
if let Some(dir_name) = subdir_path.file_name() {
139+
if dir_name.to_str().map_or(false, |s| s.ends_with(".skip")) {
140+
continue;
141+
}
142+
}
137143
if is_exoproject_with_tests(&subdir_path) {
138144
acc.push(subdir_path);
139145
} else {

integration-tests/blobs-uuids/schema-tests/introspection.expected.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ type UuidAgg {
8585
input UuidFilter {
8686
eq: Uuid
8787
neq: Uuid
88+
in: [Uuid]
8889
}
8990

9091
type Query {

integration-tests/captcha/schema-tests/introspection.expected.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ type UuidAgg {
130130
input UuidFilter {
131131
eq: Uuid
132132
neq: Uuid
133+
in: [Uuid]
133134
}
134135

135136
type Query {

integration-tests/default-values/scalar/schema-tests/introspection.expected.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,7 @@ type UuidAgg {
327327
input UuidFilter {
328328
eq: Uuid
329329
neq: Uuid
330+
in: [Uuid]
330331
}
331332

332333
type Query {

integration-tests/ownership-access-check/indirect/schema-tests/introspection.expected.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ type UuidAgg {
214214
input UuidFilter {
215215
eq: Uuid
216216
neq: Uuid
217+
in: [Uuid]
217218
}
218219

219220
type Query {

integration-tests/todo-uuid-pk/schema-tests/introspection.expected.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ type UuidAgg {
184184
input UuidFilter {
185185
eq: Uuid
186186
neq: Uuid
187+
in: [Uuid]
187188
}
188189

189190
type Query {

integration-tests/update-trigger/schema-tests/introspection.expected.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ type UuidAgg {
128128
input UuidFilter {
129129
eq: Uuid
130130
neq: Uuid
131+
in: [Uuid]
131132
}
132133

133134
type Query {

0 commit comments

Comments
 (0)