
| Current Path : /proc/thread-self/root/usr/local/lib/python3.8/dist-packages/h5py/tests/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/usr/local/lib/python3.8/dist-packages/h5py/tests/__init__.py |
# This file is part of h5py, a Python interface to the HDF5 library.
#
# http://www.h5py.org
#
# Copyright 2008-2013 Andrew Collette and contributors
#
# License: Standard 3-clause BSD; see "license.txt" for full license terms
# and contributor agreement.
def run_tests(args=''):
try:
from pytest import main
except ImportError:
print("Tests require pytest, pytest not installed")
return 1
else:
from shlex import split
from subprocess import call
from sys import executable
cli = [executable, "-m", "pytest", "--pyargs", "h5py"]
cli.extend(split(args))
return call(cli)