{"id":27629435,"url":"https://github.com/robot-runner-community/robot-runner","last_synced_at":"2026-05-02T23:31:51.166Z","repository":{"id":285457666,"uuid":"958201552","full_name":"ROBOT-RUNNER-COMMUNITY/ROBOT-RUNNER","owner":"ROBOT-RUNNER-COMMUNITY","description":"Robot Runner is a GUI that helps testers to run, and manage auto tests created by robot framework in order to have a good user experience.","archived":false,"fork":false,"pushed_at":"2025-04-22T23:41:06.000Z","size":188534,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-23T15:16:49.942Z","etag":null,"topics":["automated-testing","automation","ci-cd","pyqt6","python","qa-automation","qt6","robotframework","tests"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ROBOT-RUNNER-COMMUNITY.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-31T20:08:16.000Z","updated_at":"2025-04-22T23:38:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"920eabe9-c323-42aa-9dd3-b96f7b30717b","html_url":"https://github.com/ROBOT-RUNNER-COMMUNITY/ROBOT-RUNNER","commit_stats":null,"previous_names":["ashraf-khabar/robot-runner","robot-runner-community/robot-runner"],"tags_count":29,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROBOT-RUNNER-COMMUNITY%2FROBOT-RUNNER","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROBOT-RUNNER-COMMUNITY%2FROBOT-RUNNER/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROBOT-RUNNER-COMMUNITY%2FROBOT-RUNNER/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROBOT-RUNNER-COMMUNITY%2FROBOT-RUNNER/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ROBOT-RUNNER-COMMUNITY","download_url":"https://codeload.github.com/ROBOT-RUNNER-COMMUNITY/ROBOT-RUNNER/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250457780,"owners_count":21433734,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automated-testing","automation","ci-cd","pyqt6","python","qa-automation","qt6","robotframework","tests"],"created_at":"2025-04-23T15:17:13.153Z","updated_at":"2025-10-27T15:13:19.627Z","avatar_url":"https://github.com/ROBOT-RUNNER-COMMUNITY.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n  \u003cbr\u003e\n  \u003ca href=\"ROBBOT RUNNER\"\u003e\u003cimg src=\"images/Logo.png\" width=\"300\"\u003e\u003c/a\u003e\n  \u003cbr\u003e\n  ROBOT RUNNER\n  \u003cbr\u003e\n\u003c/h1\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"#key-features\"\u003eKey Features\u003c/a\u003e\n  \u003ca href=\"#download\"\u003eDownload\u003c/a\u003e\n  \u003ca href=\"#credits\"\u003eCredits\u003c/a\u003e\n\u003c/p\u003e\n\n## Table of Contents\n- [Table of Contents](#table-of-contents)\n- [Installation](#installation)\n  - [Prerequisites](#prerequisites)\n  - [Steps to Install](#steps-to-install)\n- [Building the Application](#building-the-application)\n  - [Steps to Build](#steps-to-build)\n- [Building an Executable](#building-an-executable)\n  - [Steps to Build the Executable using a pre-build script shell](#steps-to-build-the-executable-using-a-pre-build-script-shell)\n  - [Steps to Build the Executable](#steps-to-build-the-executable)\n- [Contributing](#contributing)\n\n## Installation\n\n### Prerequisites\nBefore you can run or contribute to the project, ensure you have the following installed:\n\n- Python (version 3.6+)\n- pip (Python package installer)\n- Robot Framework\n- PyQt6 (for GUI)\n- pabot (optional, for parallel test execution)\n\n### Steps to Install\n\n1. Clone the repository:\n\n    ```bash\n    git clone https://github.com/your-username/robot-runner.git\n    cd robot-runner\n    ```\n2. Create a virtual environment (optional but recommended):\n\n    ```bash\n    python -m venv venv\n    ```\n3. Activate the virtual environment:\n\n    - **Windows**:\n        ```bash\n        venv\\Scripts\\activate\n        ```\n    - **macOS/Linux**:\n        ```bash\n        source venv/bin/activate\n        ```\n4. Install the required dependencies:\n\n    ```bash\n    pip install -r requirements.txt\n    ```\n5. (Optional) Install Robot Framework and Pabot globally if you don't have them:\n\n    ```bash\n    pip install robotframework\n    pip install pabot\n    ```\n## Building the Application\n\nIf you'd like to modify and build the application from source, follow these steps.\n\n### Steps to Build\n\n1. Install the required dependencies:\n\n    Run the following command to ensure all dependencies are installed:\n\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n2. Run the application:\n\n    You can run the app directly with:\n\n    ```bash\n    python main.py\n    ```\n\n## Building an Executable\n\nIf you need to distribute the application to users without requiring them to install Python, you can build a standalone .exe file (for Windows) using PyInstaller.\n\n### Steps to Build the Executable using a pre-build script shell\nIn order to generate the executable `exe` file you just need to run the script :\n\n1. For Linux:\n    ```bash\n    sudo apt get bash\n    bash ./build.sh\n    ```\n2. For windows:\n    ```bash\n    ./build.sh\n    ```\n\n### Steps to Build the Executable\n\n1. Install PyInstaller:\n\n    ```bash\n    pip install pyinstaller\n    ```\n\n2. Create the executable:\n\n    Run the following command in the project root directory to build the .exe file:\n\n    ```bash\n    pyinstaller --onefile --windowed main.py\n    ```\n    - `--onefile`: Bundles everything into a single executable file.\n    - `--windowed`: Prevents a command prompt window from appearing when you run the app (for GUI apps).\n\n    After building, you can find the `.exe` file in the `dist` folder.\n\n3. (Optional) If you want to package the .exe with additional resources (e.g., icons, images), you can modify the PyInstaller command to include them:\n\n    ```bash\n    pyinstaller --onefile --windowed --add-data \"./style/style.qss;style\" --add-data \"images/*;images\" main.py\n    ```\n    Make sure to adjust paths as needed for your project structure.\n\n## Contributing\n\nWe welcome contributions! Here’s how you can get involved:\n\n1. **Fork the Repository**  \n   Visit the repository and click the Fork button at the top-right of the page to create your own copy of the repository.\n\n2. **Clone Your Fork**  \n   ```bash\n   git clone https://github.com/ROBOT-RUNNER-COMMUNITY/ROBOT-RUNNER\n   cd robot-runner\n\n3. **Create a Branch**  \n   It’s best to create a new branch for the feature or bug fix you want to work on:\n   ```bash\n   git checkout -b feature/your-feature\n4. **Make Your Changes**  \n   Modify the code or add features. Be sure to write tests to validate your changes (if applicable).\n\n5. **Commit Your Changes**  \n   Commit your changes with a descriptive message:\n   ```bash\n   git add .\n   git commit -m \"Add new feature or fix bug\"\n6. **Push to Your Fork**  \n   Push your changes back to your fork on GitHub:\n   ```bash\n   git push origin feature/your-feature\n7. **Open a Pull Request**  \n   Once your changes are pushed, go to the GitHub page for your fork and create a pull request. Provide a clear description of what your changes do and why.\n\n8. **Review and Merge**  \n   After the pull request is reviewed, we will merge it into the main branch.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobot-runner-community%2Frobot-runner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobot-runner-community%2Frobot-runner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobot-runner-community%2Frobot-runner/lists"}