spack/var/spack/repos/builtin/packages/py-pytest-random-order/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

23 lines
735 B
Python

# Copyright 2013-2023 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.package import *
class PyPytestRandomOrder(PythonPackage):
"""
Randomise the order in which pytest tests are run.
"""
homepage = "https://github.com/jbasko/pytest-random-order"
pypi = "pytest-random-order/pytest-random-order-1.0.4.tar.gz"
version("1.0.4", sha256="6b2159342a4c8c10855bc4fc6d65ee890fc614cb2b4ff688979b008a82a0ff52")
depends_on("python@3.5:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-pytest@3.0.0:", type=("build", "test", "run"))