diff options
author | Ryan Marcellino <67644978+myan-rarcellino-nnl@users.noreply.github.com> | 2022-03-11 10:39:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 09:39:47 -0600 |
commit | abab284996982c44040907bcec2f9019236c24af (patch) | |
tree | 40ca15d54afb761b88ed44aaf29f371e70a3270f /var | |
parent | 1caa3107b396d2630038ed3e7b953be245bae870 (diff) | |
download | spack-abab284996982c44040907bcec2f9019236c24af.tar.gz spack-abab284996982c44040907bcec2f9019236c24af.tar.bz2 spack-abab284996982c44040907bcec2f9019236c24af.tar.xz spack-abab284996982c44040907bcec2f9019236c24af.zip |
new package: py-pytest-parallel (#29431)
* new package: py-pytest-parallel
* depend on python@3.7:
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pytest-parallel/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytest-parallel/package.py b/var/spack/repos/builtin/packages/py-pytest-parallel/package.py new file mode 100644 index 0000000000..2271617b64 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pytest-parallel/package.py @@ -0,0 +1,20 @@ +# 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 PyPytestParallel(PythonPackage): + """A pytest plugin for parallel and concurrent testing.""" + + homepage = "https://github.com/browsertron/pytest-parallel" + pypi = "pytest-parallel/pytest-parallel-0.1.1.tar.gz" + + version('0.1.1', sha256='9aac3fc199a168c0a8559b60249d9eb254de7af58c12cee0310b54d4affdbfab') + + depends_on('python@3.7:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-pytest@3.0:', type=('build', 'run')) + depends_on('py-tblib', type=('build', 'run')) |