Skip to content

Commit 9b3d7c3

Browse files
committed
Updated Bazel test config
Signed-off-by: Marvin Hansen <[email protected]>
1 parent 57c625a commit 9b3d7c3

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

deep_causality/tests/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ rust_test_suite(
312312
rust_test_suite(
313313
name = "traits_tests",
314314
srcs = glob([
315-
"traits/generatable/*_tests.rs",
315+
"traits/generatable/generative_processor/*_tests.rs",
316316
]),
317317
tags = [
318318
"traits_tests",

deep_causality/tests/types/causal_types/causaloid_graph/mod.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,27 @@
33
* Copyright (c) "2025" . The DeepCausality Authors and Contributors. All Rights Reserved.
44
*/
55

6+
#[cfg(test)]
67
mod causality_graph_edges_tests;
78
#[cfg(test)]
89
mod causality_graph_explaining_tests;
10+
#[cfg(test)]
911
mod causality_graph_freeze_tests;
12+
#[cfg(test)]
1013
mod causality_graph_nodes_tests;
14+
#[cfg(test)]
1115
mod causality_graph_reasoning_all_tests;
16+
#[cfg(test)]
1217
mod causality_graph_reasoning_imbalanced_tests;
18+
#[cfg(test)]
1319
mod causality_graph_reasoning_linear_tests;
1420
#[cfg(test)]
1521
mod causality_graph_reasoning_multi_tests;
22+
#[cfg(test)]
1623
mod causality_graph_reasoning_shortest_tests;
24+
#[cfg(test)]
1725
mod causality_graph_reasoning_single_tests;
26+
#[cfg(test)]
1827
mod causality_graph_reasoning_sub_tests;
1928
#[cfg(test)]
2029
mod causality_graph_tests;

0 commit comments

Comments
 (0)