Skip to content

Commit ea0c2f5

Browse files
committed
Fixed changes while merging development
2 parents 722e2bf + c5af464 commit ea0c2f5

File tree

10 files changed

+27350
-43
lines changed

10 files changed

+27350
-43
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ RUN python install.py ${BUILD_ARGS} --geppetto ${GEPPETTO_VERSION}
3535
WORKDIR ${INSTALLATION_FOLDER}
3636

3737
RUN pip install -r requirements-test.txt
38-
# RUN pytest tests/backend
38+
RUN pytest tests/backend
3939
CMD /bin/bash -c "jupyter notebook --NotebookApp.default_url=/geppetto --NotebookApp.token='' --library=netpyne_ui --NotebookApp.disable_check_xsrf=True"

netpyne_ui/netpyne_geppetto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ def exportModel(self, args):
593593
sim.saveData(include)
594594
sim.cfg.saveJson = False
595595

596-
with open(f"{sim.cfg.filename}.json") as json_file:
596+
with open(f"{sim.cfg.filename}_data.json") as json_file:
597597
data = json.load(json_file)
598598
return data
599599

0 commit comments

Comments
 (0)