Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
40
Issue boards
Milestones
Wiki
Code
Merge requests
29
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Merge requests
!334
skip some elephant tests that fail on HPC
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
skip some elephant tests that fail on HPC
elephant-skip-tests
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Eleni Mathioulaki
requested to merge
elephant-skip-tests
into
master
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
fixes
#38 (closed)
and
#43 (closed)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
08fe2115
1 commit,
1 year ago
1 file
+
3
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
packages/py-elephant/package.py
+
3
−
2
Options
@@ -76,6 +76,7 @@ class PyElephant(PythonPackage):
@run_after
(
'
install
'
)
@on_package_attributes
(
run_tests
=
True
)
def
install_test
(
self
):
# run tests here (this is just an example):
pytest
=
which
(
'
pytest
'
)
pytest
()
# skip some tests that seem to fail on HPC deployments,
# see https://gitlab.ebrains.eu/technical-coordination/project-internal/devops/platform/ebrains-spack-builds/-/issues/38
pytest
(
'
-k
'
,
'
not test_WPLI_ground_truth_consistency_real_LFP_dataset and not test_multitaper_cohere_perfect_cohere
'
)