2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-03-02 02:29:22 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-03-02 02:29:22 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyPytestCov(PythonPackage):
|
|
|
|
"""Pytest plugin for measuring coverage."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/pytest-dev/pytest-cov"
|
2017-06-25 13:22:55 +08:00
|
|
|
url = "https://pypi.io/packages/source/p/pytest-cov/pytest-cov-2.3.1.tar.gz"
|
2017-03-02 02:29:22 +08:00
|
|
|
|
|
|
|
version('2.3.1', '8e7475454313a035d08f387ee6d725cb')
|
|
|
|
|
|
|
|
extends('python', ignore=r'bin/*')
|
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-pytest@2.6.0:', type=('build', 'run'))
|
|
|
|
depends_on('py-coverage@3.7.1:', type=('build', 'run'))
|