summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pytest-cov/package.py
blob: 0c1c7cfb76132942fef77387db72be9fc469d330 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *


class PyPytestCov(PythonPackage):
    """Pytest plugin for measuring coverage."""

    homepage = "https://github.com/pytest-dev/pytest-cov"
    pypi = "pytest-cov/pytest-cov-2.8.1.tar.gz"

    version('3.0.0', sha256='e7f0f5b1617d2210a2cabc266dfe2f4c75a8d32fb89eafb7ad9d06f6d076d470')
    version('2.8.1', sha256='cc6742d8bac45070217169f5f72ceee1e0e55b0221f54bcf24845972d3a47f2b')
    version('2.3.1', sha256='fa0a212283cdf52e2eecc24dd6459bb7687cc29adb60cb84258fab73be8dda0f')

    extends('python', ignore=r'bin/*')

    depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
    depends_on('python@3.6:', type=('build', 'run'), when='@3.0.0:')
    depends_on('py-setuptools', type='build')
    depends_on('py-pytest@3.6:', type=('build', 'run'))
    depends_on('py-pytest@4.6:', type=('build', 'run'), when='@3.0.0:')
    depends_on('py-coverage@4.4:', type=('build', 'run'))
    depends_on('py-coverage@5.2.1: +toml', type=('build', 'run'), when='@3.0.0:')