Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temp disable pytorch_ddm.py test #400

Merged
merged 2 commits into from
Mar 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -277,3 +277,4 @@ Thumbs.db #thumbnail cache on Windows
/examples/MDF/NLP/TestNLP_3
/examples/MDF/NLP/TestNLP
/examples/MDF/conditions/composite_example
/examples/NeuroML/arm64
2 changes: 1 addition & 1 deletion examples/NeuroML/LEMS_SimABCD.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--

This LEMS file has been automatically generated using PyNeuroML v0.7.2 (libNeuroML v0.4.0)
This LEMS file has been automatically generated using PyNeuroML v0.7.6 (libNeuroML v0.4.1)

-->

Expand Down
2 changes: 1 addition & 1 deletion examples/NeuroML/LEMS_SimFN.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--

This LEMS file has been automatically generated using PyNeuroML v0.7.2 (libNeuroML v0.4.0)
This LEMS file has been automatically generated using PyNeuroML v0.7.6 (libNeuroML v0.4.1)

-->

Expand Down
2 changes: 1 addition & 1 deletion examples/NeuroML/LEMS_SimIzhikevichTest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--

This LEMS file has been automatically generated using PyNeuroML v0.7.2 (libNeuroML v0.4.0)
This LEMS file has been automatically generated using PyNeuroML v0.7.6 (libNeuroML v0.4.1)

-->

Expand Down
2 changes: 1 addition & 1 deletion src/modeci_mdf/interfaces/graphviz/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ def mdf_to_graphviz(
format_label("OUT"),
format_output(op.id),
match_in_expr(op.value, node),
"(shape: %s)" % op.shape
"(shape: %s)" % str(op.shape)
if op.shape is not None
else ""
if level >= LEVEL_2 and op.shape is not None
Expand Down
6 changes: 5 additions & 1 deletion tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@
example_pnl_scripts = {
Path(f) for f in glob.glob("examples/PsyNeuLink/**/*.py", recursive=True)
}
example_exclusion_strings = [".reconstructed.py", "generate_json_and_scripts.py"]
example_exclusion_strings = [
".reconstructed.py",
"generate_json_and_scripts.py",
"pytorch_ddm.py",
]

# Filter any excluded example scripts
example_scripts = [
Expand Down