Skip to content
Snippets Groups Projects
Commit 6ee5e4d2 authored by Dennis Terhorst's avatar Dennis Terhorst :rocket:
Browse files

add test dependencies

parent 37689a4e
No related branches found
No related tags found
4 merge requests!301create new experimental release,!300add spack post-installation testing,!279update py-elephant to 0.12.0,!214Change NEST tests from build to install phase
......@@ -76,20 +76,33 @@ class Nest(CMakePackage):
depends_on('python@2.6:', when='@2.16:+python', type=('build', 'run'))
depends_on('python@3.8:', when='@3:', type=('build', 'run'))
depends_on('py-numpy@:1.16.99', when='@:2.14.99+python', type=('build', 'run'))
depends_on('py-numpy', when='+python', type=('build', 'run'))
depends_on('py-numpy', when='+python', type=('build', 'run', 'test'))
depends_on('py-pandas', when='@3:', type=('test'))
depends_on('py-cython@0.19.2:', when='+python', type='build')
depends_on('py-nose', when='+python', type='test')
depends_on('py-setuptools', when='+python', type='build')
depends_on('boost', when="@2.16:+boost", type='build')
depends_on('py-setuptools@:44.99.99', when='@:2.15.99+python', type='build')
depends_on('mpi', when='+mpi')
depends_on('doxygen', type='build')
depends_on('gsl', when='+gsl')
depends_on('py-nose', when='@:2.99.99+python', type='test')
depends_on('py-pytest', when='@3.0:', type='test')
depends_on('py-pytest-xdist', when='@3.0:', type='test')
depends_on('py-pytest-timeout', when='@3.0:', type='test')
depends_on('py-junitparser@2:', type='test')
depends_on('py-terminaltales', when='@3:', type='test')
depends_on('py-pycodestyle', when='@3:', type='test')
depends_on('cppcheck', type='test')
depends_on('clang-format@3.6', when='@:3.1.99', type='test')
depends_on('clang-format@9', when='@3.2:3.3.99', type='test')
depends_on('clang-format@13', when='@3.4:', type='test')
depends_on('mpi', when='+mpi')
depends_on('py-mpi4py', when='+python+mpi', type=('run', 'test'))
depends_on('doxygen', type='build')
depends_on('gsl', when='+gsl')
depends_on('readline')
depends_on('ncurses')
depends_on('libtool')
depends_on('pkgconfig', type='build')
depends_on('pkgconfig', type='build')
extends('python', when='+python')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment