File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ install:
19
19
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
20
20
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH"
21
21
python -W ignore -m pip install --upgrade pip wheel
22
- python -W ignore -m pip install pytest numpy --no-warn-script-location
22
+ python -W ignore -m pip install pytest numpy --no-warn-script-location pytest-timeout
23
23
- ps : |
24
24
Start-FileDownload 'https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.zip'
25
25
7z x eigen-3.3.7.zip -y > $null
Original file line number Diff line number Diff line change @@ -80,3 +80,6 @@ warn_unused_ignores = True
80
80
warn_return_any = True
81
81
no_implicit_reexport = True
82
82
strict_equality = True
83
+
84
+ [tool:pytest]
85
+ timeout = 300
Original file line number Diff line number Diff line change @@ -5,5 +5,6 @@ numpy==1.19.3; (platform_python_implementation!="PyPy" or sys_platform=="linux")
5
5
pytest == 4.6.9 ; python_version < "3.5"
6
6
pytest == 6.1.2 ; python_version == "3.5"
7
7
pytest == 6.2.1 ; python_version >= "3.6"
8
+ pytest-timeout
8
9
scipy == 1.2.3 ; (platform_python_implementation!="PyPy" or sys_platform=="linux" ) and python_version<"3.6"
9
10
scipy == 1.5.4 ; (platform_python_implementation!="PyPy" or sys_platform=="linux" ) and python_version>="3.6" and python_version<"3.10"
You can’t perform that action at this time.
0 commit comments