Skip to content

Commit

Permalink
tests/llvm/debug: Remove duplicate 'const_data' debug flag
Browse files Browse the repository at this point in the history
Reduces the number of test variants by half.

Signed-off-by: Jan Vesely <[email protected]>
  • Loading branch information
jvesely committed Jun 29, 2023
1 parent d4a5c64 commit 70281e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/llvm/test_debug_composition.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from psyneulink.core.components.mechanisms.processing.transfermechanism import TransferMechanism
from psyneulink.core.compositions.composition import Composition

debug_options=["const_input=[[[7]]]", "const_input", "const_data", "const_params", "const_data", "const_state", "stat", "time_stat", "unaligned_copy"]
debug_options=["const_input=[[[7]]]", "const_input", "const_params", "const_data", "const_state", "stat", "time_stat", "unaligned_copy"]
options_combinations = (";".join(("", *c)) for i in range(len(debug_options) + 1) for c in combinations(debug_options, i))

@pytest.mark.composition
Expand Down

0 comments on commit 70281e8

Please sign in to comment.