{"id":15960483,"url":"https://github.com/nepitwin/ci-robotframework","last_synced_at":"2026-04-28T08:03:06.816Z","repository":{"id":164521454,"uuid":"262109143","full_name":"Nepitwin/ci-robotframework","owner":"Nepitwin","description":"Example for build system usage by ui test automation","archived":false,"fork":false,"pushed_at":"2024-03-24T18:38:23.000Z","size":342,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-04-04T11:03:43.647Z","etag":null,"topics":["automation","continuous-integration","example-project","python","robotframework","robotframework-testing","test-automation","testing"],"latest_commit_sha":null,"homepage":"","language":"Batchfile","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/Nepitwin.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}},"created_at":"2020-05-07T16:59:12.000Z","updated_at":"2024-03-24T18:15:06.000Z","dependencies_parsed_at":"2024-10-30T01:23:38.143Z","dependency_job_id":null,"html_url":"https://github.com/Nepitwin/ci-robotframework","commit_stats":{"total_commits":5,"total_committers":1,"mean_commits":5.0,"dds":0.0,"last_synced_commit":"b562ecf7e30c8ae012731bd65cc7c1307efa012f"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Nepitwin/ci-robotframework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nepitwin%2Fci-robotframework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nepitwin%2Fci-robotframework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nepitwin%2Fci-robotframework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nepitwin%2Fci-robotframework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nepitwin","download_url":"https://codeload.github.com/Nepitwin/ci-robotframework/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nepitwin%2Fci-robotframework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32371673,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["automation","continuous-integration","example-project","python","robotframework","robotframework-testing","test-automation","testing"],"created_at":"2024-10-07T15:03:12.642Z","updated_at":"2026-04-28T08:03:06.799Z","avatar_url":"https://github.com/Nepitwin.png","language":"Batchfile","readme":"# CI-Robotframework\n\n| System    | Badge |\n| -------- | ------- |\n| Appveyor Build  | [![Build status](https://img.shields.io/appveyor/build/Nepitwin/ci-robotframework)](https://ci.appveyor.com/project/Nepitwin/ci-robotframework)    |\n| Appveyor Badge |[\u003cimg src=\"https://img.shields.io/appveyor/tests/Nepitwin/ci-robotframework\"\u003e](https://ci.appveyor.com/project/Nepitwin/ci-robotframework/build/tests)     |\n| Testspace Badge    | [\u003cimg src=\"https://img.shields.io/testspace/tests/nepitwin/Nepitwin%3Aci-robotframework/main\"\u003e](https://nepitwin.testspace.com/spaces/267312)    |\n\nRobotframework example for build system usage by ui test automation by appveyor.\n\nCheck by Python table from appveyor which test worker supports your python version.\n\n  * https://www.appveyor.com/docs/windows-images-software/#python\n\n## Appveyor setup by yaml file\n\nFor github configuration create a appveyor.yaml file.\n\n```\nversion: 1.0.{build}\nimage: Visual Studio 2017\ninstall:\n- cmd: \u003e-\n    set PATH=C:\\Python37;C:\\Python37\\\\Scripts;%PATH%\n\n    python -m pip install --upgrade pip\n\n    pip install wheel\n\n    pip install robotframework\n\n    pip install robotframework-whitelibrary\nbuild: off\ntest_script:\n- ps: robot -x xunit-result.xml -d result --nostatusrc Automation.robot\nartifacts:\n- path: result/\n  name: results\non_finish:\n- ps: \u003e-\n    $wc = New-Object 'System.Net.WebClient'\n\n    $wc.UploadFile(\"https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)\", (Resolve-Path .\\result\\xunit-result.xml))\n```\n\n\n## Appveyor setup by web interface\n\nLogin to your appveyor account and establish a github project to build.\n\n### Environment setup\n\n  * Setup build worker image to Visual Studio 2017 for python 3.7.5 usage.\n  * Setup a install script by powershell script\n\n```\nset PATH=C:\\Python37;C:\\Python37\\\\Scripts;%PATH%\npython -m pip install --upgrade pip\npip install wheel\npip install robotframework\npip install robotframework-whitelibrary\n```\n\n![Configuration](settings_1.PNG \"Configuration setup\")\n\n### Test Setup\n\nExecute robot framework files by a simple bat file or ps cmd. Most important argument is '--nostatusrc' to avoid Exit command -1 return from robot framework execution.\n\n```\nrobot -x xunit.xml -d result --nostatusrc Automation.robot\n```\n\n![Tests](settings_2.PNG \"Test setup\")\n\n### Artifacts\n\nArtifacts deployment can store results as zip.\n\n![Artifacts](settings_3.PNG \"Artifact setup\")\n\n### Xunit Testing\n\nTo upload xunit files from robot to appveyor use web api. Importand don't use xunit parser from appveyor because xunit file from robotframework is junit xml file.\n\n  * https://www.appveyor.com/docs/running-tests/\n\n```\n$wc = New-Object 'System.Net.WebClient'\n$wc.UploadFile(\"https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)\", (Resolve-Path .\\result\\xunit-result.xml))\n```\n\n![XUnit](test.PNG \"XUnit results\")\n\n### Robot Results\n\nDownload artifact files and see robot files.\n\n![Results](robot.PNG \"Robot results\")\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnepitwin%2Fci-robotframework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnepitwin%2Fci-robotframework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnepitwin%2Fci-robotframework/lists"}