Skip to content

Commit

Permalink
Added windows condition to the requirements file for numpy>2 (because…
Browse files Browse the repository at this point in the history
… this was only problem with windows).

Test cases for ubuntu should pass now (older numpy + PyMuPDF versions)
Issue damies13#38
  • Loading branch information
ArekKuczynski committed Oct 12, 2024
1 parent b3f8c51 commit 81b8484
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Tests/Regression/Reporter/GUI_Features.robot
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ Verify the Content Of the DOCX Report
VAR ${resultfolder} ${basefolder}${/}${resultdata}
VAR ${template_dir} ${basefolder}${/}sample.template
VAR ${docx_file} ${resultfolder}${/}${resultdata}.docx
VAR ${img_comp_threshold} 1
VAR ${move_tolerance} 100
VAR ${img_comp_threshold} 0.7
VAR ${move_tolerance} 10

Log template: ${template_dir} console=True
Open GUI -d ${resultfolder} -t ${template_dir}
Expand Down
4 changes: 2 additions & 2 deletions Tests/Regression/Reporter/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
robotframework
numpy>2; python_version > '3.12'
PyMuPDF>=1.23.1; python_version > '3.12'
numpy>2; python_version > '3.12' and sys_platform == 'windows'
PyMuPDF>=1.23.1; python_version > '3.12' and sys_platform == 'windows'
robotframework-doctestlibrary
# pyscreeze 0.1.29 doesn't seem to work with pyautogui 0.9.53
pyscreeze==0.1.28
Expand Down

0 comments on commit 81b8484

Please sign in to comment.