From dfb0b4b3f53d9151021bb95a2e18dc8934766405 Mon Sep 17 00:00:00 2001 From: Moritz Kern <212-moritzkern@users.noreply.gitlab.ebrains.eu> Date: Wed, 16 Oct 2024 17:24:18 +0200 Subject: [PATCH] fix(py-elephant): skip tests with lazy data creation --- packages/py-elephant/package.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/py-elephant/package.py b/packages/py-elephant/package.py index 6827a99c..bf3b3432 100644 --- a/packages/py-elephant/package.py +++ b/packages/py-elephant/package.py @@ -84,4 +84,6 @@ class PyElephant(PythonPackage, CudaPackage): pytest = which('pytest') # skip some tests that seem to fail on HPC deployments, # see https://gitlab.ebrains.eu/ri/tech-hub/platform/esd/ebrains-spack-builds/-/issues/38 - pytest('-k', 'not test_WPLI_ground_truth_consistency_real_LFP_dataset and not test_multitaper_cohere_perfect_cohere') + # test_WPLI_ground_truth_consistency_real_LFP_dataset, test_multitaper_cohere_perfect_cohere + # skip the following due to issue with neo > 0.13.0 https://github.com/NeuralEnsemble/elephant/pull/634 + pytest('-k', 'not test_WPLI_ground_truth_consistency_real_LFP_dataset and not test_multitaper_cohere_perfect_cohere and not test_neo_tools and not test_statistics and not test_trials') -- GitLab