From 5a6f53866f80bb0744002109a99f3802b8da7056 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Wed, 29 Jan 2020 15:39:32 +0100 Subject: [PATCH] Build: Added 5 second timeout for all tests. --- requirements.txt | 2 +- setup.cfg | 1 + setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 169b160..9fed6e1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,4 +13,4 @@ pytest-cache>=1.0 pytest-cov>=2.5.1 pytest-pep8>=1.0.6 pytest>=3.2.1 - +pytest-timeout>=1.3.4 diff --git a/setup.cfg b/setup.cfg index cfcbfea..6e349ac 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,3 +3,4 @@ test=pytest [tool:pytest] norecursedirs = '.*', 'build', 'dist', 'CVS', '_darcs', '{arch}', '*.egg' lib lib64 +timeout = 5 diff --git a/setup.py b/setup.py index e30af95..bb00564 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( ], test_suite='tests', setup_requires=['pytest-runner'], - tests_require=['pytest-asyncio', 'pytest', 'mock'], + tests_require=['pytest-asyncio', 'pytest-timeout', 'pytest', 'mock'], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', -- GitLab