{"id":15144447,"url":"https://github.com/ptrptrd/robot-framework-template","last_synced_at":"2026-01-20T12:33:26.130Z","repository":{"id":219452172,"uuid":"743577103","full_name":"ptrptrd/robot-framework-template","owner":"ptrptrd","description":"Template to kick start test development using Robot Framework","archived":false,"fork":false,"pushed_at":"2024-01-27T21:47:13.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T17:33:51.321Z","etag":null,"topics":["python","robotframework","test-automation"],"latest_commit_sha":null,"homepage":"","language":"RobotFramework","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/ptrptrd.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-01-15T14:31:26.000Z","updated_at":"2024-01-27T21:46:40.000Z","dependencies_parsed_at":"2024-01-27T16:26:09.774Z","dependency_job_id":"d9358df0-1738-4bf9-9177-fe39a48970a5","html_url":"https://github.com/ptrptrd/robot-framework-template","commit_stats":{"total_commits":8,"total_committers":2,"mean_commits":4.0,"dds":0.125,"last_synced_commit":"06b5024154e351b9ba5e8de663dcdbdf8ce3f88e"},"previous_names":["ptrptrd/robot-framework-template"],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/ptrptrd/robot-framework-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ptrptrd%2Frobot-framework-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ptrptrd%2Frobot-framework-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ptrptrd%2Frobot-framework-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ptrptrd%2Frobot-framework-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ptrptrd","download_url":"https://codeload.github.com/ptrptrd/robot-framework-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ptrptrd%2Frobot-framework-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28603392,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T12:01:53.233Z","status":"ssl_error","status_checked_at":"2026-01-20T12:01:46.545Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["python","robotframework","test-automation"],"created_at":"2024-09-26T10:41:21.484Z","updated_at":"2026-01-20T12:33:26.114Z","avatar_url":"https://github.com/ptrptrd.png","language":"RobotFramework","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Robot Framework Template\n\nThis repository provides a template to kickstart test project using [Robot Framework](https://robotframework.org/).\n\n## Description\n\n- Separation between keywords library and test files\n- Import keywords library written in Python as module\n- Build the keywords library as Python package\n\n## Structure\n\n~~~\n.\n├── ...\n├── src\n│   ├── lib                     # Library folder\n│   │   ├── pythonmod           # Keywords library in Python\n│   │   └── robotmod            # Keywords library in Robot\n│   └── test                    # Test Folder, which uses keywords from lib\n└── ...\n~~~\n\n## Development Tools\n\n### Poetry\n\n[Poetry](https://python-poetry.org/) is used to package and manage dependencies in this project.\nThe dependencies are listed in [pyproject.toml](./pyproject.toml).\n\nTo start developing in python virtual environment, execute the following commands:\n\n~~~bash\n# Optional: Create virtual environment in the root directory of project\npoetry config virtualenvs.in-project true\n\n# Install listed dependencies in virtual environment\npoetry install\n~~~\n\nWith those commands the dependencies will be installed in .venv folder in the project root directory.\nThe existing test cases can be executed with the following command:\n\n~~~bash\npoetry run robot ./src/test/\n~~~\n\nThe result can be observed directly in the terminal, in which the command was executed.\nMore detailed report (i.e. log.html) is also generated in the directory of command execution.\n\n### Pre Commit\n\n[Pre Commit](https://pre-commit.com/) is a tool to manage git hook.\nE.g. with a pre-commit hook, files in stash will be checked before the commit is executed.\n\nInstall the hook defined in [configuration file](./.pre-commit-config.yaml) by executing the following command:\n\n~~~bash\n# If poetry is used: poetry run pre-commit install\npre-commit install\n~~~\n\n### Dev Container\n\n[Dev Container](https://containers.dev/) offers the possiblity to develop in enclosed development container.\n\nUsing the CLI adevelopment container as described in [configuration file](./.devcontainter/devcontainer.json) can be spun up:\n\n~~~bash\nnpm install -g @devcontainer/cli\ndevcontainer up\n~~~\n\n### VS Code\n\nIf VS Code is choosen as editor, there are some extensions, which can help with the development:\n- [Dev Container](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)\n- [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python)\n- [Robot Framework LSP](https://marketplace.visualstudio.com/items?itemName=robocorp.robotframework-lsp)\n\nAdditional setting for using VS Code with Python virtual environment:\n~~~json\n{\n    // Set path of Python executable for both Robot and Python LSP\n    \"robot.python.executable\": \"${workspaceFolder}/.venv/bin/python\",\n    \"python.defaultInterpreterPath\": \"${workspaceFolder}/.venv/bin/python\"\n}\n~~~\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fptrptrd%2Frobot-framework-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fptrptrd%2Frobot-framework-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fptrptrd%2Frobot-framework-template/lists"}