Remove test dependencies from Python packages (#4572)

* Remove test dependencies from Python packages

* Make test deptype more clear for a couple more packages
This commit is contained in:
Adam J. Stewart
2017-06-23 08:51:45 -05:00
committed by GitHub
parent 1d741a2110
commit 3e087f2e25
6 changed files with 20 additions and 12 deletions

View File

@@ -34,7 +34,7 @@ class PyBrian2(PythonPackage):
version('2.0.1', 'df5990e9a71f7344887bc02f54dfd0f0')
version('2.0rc3', '3100c5e4eb9eb83a06ff0413a7d43152')
variant('docs', default=False)
variant('docs', default=False, description='Build the documentation')
# depends on py-setuptools@6: for windows, if spack targets windows,
# this will need to be added here
@@ -45,6 +45,6 @@ class PyBrian2(PythonPackage):
depends_on('py-jinja2@2.7:', type=('build', 'run'))
depends_on('py-cpuinfo@0.1.6:', type=('build', 'run'))
# depends_on('py-nosetests@1.0:', type=('build', 'run')) # extra test
depends_on('py-nosetests@1.0:', type=('build', 'run'), when='+docs')
# TODO: Add a 'test' deptype
# depends_on('py-nosetests@1.0:', type='test')
depends_on('py-sphinx@1.4.2:', type=('build', 'run'), when='+docs')