Skip to content

Commit

Permalink
Disable test_neuromodulation_sims_coreneuron, test_synapse_delay_over…
Browse files Browse the repository at this point in the history
…ride until the next deployment of neurodamus-neocortex

NEURODAMUS_MODELS_BRANCH=weji/GluSynapse
BLUECONFIGS_BRANCH=weji/ref_v9
  • Loading branch information
WeinaJi committed Jun 10, 2024
1 parent 41e2b56 commit d7ddeea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions tests/scientific/test_neuromodulation.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import numpy as np
import numpy.testing as npt
import os
import pytest
from pathlib import Path

SIM_DIR = Path(__file__).parent.parent.absolute() / "simulations" / "neuromodulation"
Expand All @@ -24,6 +25,8 @@ def test_neuromodulation_sims_neuron():
npt.assert_allclose(timestamps, obtained_timestamps)


@pytest.mark.skip(
reason="Disable until new CoreNEURON synapse replay is deployed in the neurodamus-neocortex")
def test_neuromodulation_sims_coreneuron():
from neurodamus import Neurodamus
from neurodamus.replay import SpikeManager
Expand Down
6 changes: 4 additions & 2 deletions tests/scientific/test_projections.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,10 @@ def _read_sonata_soma_report(report_name):
[
{'enable_synapse_delay': False, 'simulator': 'NEURON'},
{'enable_synapse_delay': True, 'simulator': 'NEURON'},
{'enable_synapse_delay': False, 'simulator': 'CORENEURON'},
{'enable_synapse_delay': True, 'simulator': 'CORENEURON'}
pytest.param({'enable_synapse_delay': False, 'simulator': 'CORENEURON'},
marks=pytest.mark.skip(reason="Until new CoreNEURON syn replay is deployed")),
pytest.param({'enable_synapse_delay': True, 'simulator': 'CORENEURON'},
marks=pytest.mark.skip(reason="Until new CoreNEURON syn replay is deployed"))
],
indirect=True
)
Expand Down

0 comments on commit d7ddeea

Please sign in to comment.