Files
2025-12-02 12:52:05 +01:00

22 lines
567 B
Python

###################################################################
# Numexpr - Fast numerical array expression evaluator for NumPy.
#
# License: MIT
# Author: See AUTHORS.txt
#
# See LICENSE.txt and LICENSES/*.txt for details about copyright and
# rights to use.
####################################################################
import pytest
import numexpr
def pytest_configure(config):
config.addinivalue_line(
"markers", "thread_unsafe: mark test as unsafe for parallel execution"
)
print("")
numexpr.print_versions()