Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ REQUIRED_FILES=(

for FILE in "${REQUIRED_FILES[@]}"; do
if [ ! -f "$FILE" ]; then
echo "Missing required file: $FILE"
echo "Missing required file: $FILE"
echo "Reinstalling PyQt6..."
pip uninstall -y PyQt6 PyQt6-Charts PyQt6-Qt6
pip install PyQt6 PyQt6-Charts
if [ ! -f "$FILE" ]; then
echo "❌❌ File still missing after reinstall: $FILE"
echo "File still missing after reinstall: $FILE"
exit 1
fi
fi
Expand Down
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<data>
<version>v2.7.18</version>
<version>v2.7.19</version>
<description>Configuration file for the application</description>
</data>
22 changes: 22 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,28 @@ RUN pip install --no-cache-dir -r requirements.txt \
&& pip install pyinstaller \
&& pyinstaller --noconfirm --onefile --windowed \
--name RobotTestRunner \
--add-data "robotframework-4.0.3-py3.11.egg:." \
--add-data "robotframework-seleniumlibrary-5.1.3-py3.11.egg:." \
--add-data "robotframework-selenium2library-3.0.0-py3.11.egg:." \
--add-data "robotframework-requests-0.9.0-py3.11.egg:." \
--add-data "robotframework-httplibrary-3.0.0-py3.11.egg:." \
--add-data "robotframework-selenium2library-3.0.0-py3.11.egg:." \
--add-data "robotframework-seleniumlibrary-5.1.3-py3.11.egg:." \
--add-data "robotframework-requests-0.9.0-py3.11.egg:." \
--add-data "robotframework-httplibrary-3.0.0-py3.11.egg:." \
--add-data "robotframework-4.0.3-py3.11.egg:." \
--add-data "robotframework-seleniumlibrary-5.1.3-py3.11.egg:." \
--add-data "robotframework-selenium2library-3.0.0-py3.11.egg:." \
--add-data "robotframework-requests-0.9.0-py3.11.egg:." \
--add-data "robotframework-httplibrary-3.0.0-py3.11.egg:." \
--add-data "robotframework-selenium2library-3.0.0-py3.11.egg:." \
--add-data "robotframework-seleniumlibrary-5.1.3-py3.11.egg:." \
--add-data "robotframework-requests-0.9.0-py3.11.egg:." \
--add-data "robotframework-httplibrary-3.0.0-py3.11.egg:." \
--add-data "robotframework-selenium2library-3.0.0-py3.11.egg:." \
--add-data "robotframework-seleniumlibrary-5.1.3-py3.11.egg:." \
--add-data "robotframework-requests-0.9.0-py3.11.egg:." \
--add-data "robotframework-httplibrary-3.0.0-py3.11.egg:." \
--add-data "style/style.qss:style" \
--add-data "image copy.png:." \
main.py
Expand Down
Binary file modified images/Dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion ui/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
from ui.help.help_controller import HelpController
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing import libraries




matplotlib.use('Qt5Agg')

class RobotTestRunner(QWidget):
Expand Down