Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wywincl/robotframework-pabot
pabot command in docker environment
https://github.com/wywincl/robotframework-pabot
Last synced: 12 days ago
JSON representation
pabot command in docker environment
- Host: GitHub
- URL: https://github.com/wywincl/robotframework-pabot
- Owner: wywincl
- License: apache-2.0
- Created: 2019-03-08T02:11:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-07T09:04:45.000Z (over 5 years ago)
- Last Synced: 2024-11-13T04:31:31.744Z (2 months ago)
- Language: Dockerfile
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# robotframework-pabot
pabot command in docker environment![pabot-docker](https://github.com/wywincl/robotframework-pabot/blob/master/pabot-docker.jpg)
`pabot` is parallel executor for Robot Framework test cases. [see more](https://github.com/mkorpela/pabot)
# usage
#### use pabot to run test
```
docker run --rm -v {yourpath}:/etc/robot wywincl/robotframework-pabot [options] testcases
```#### use robot to run test
```
docker run --rm -v {yourpath}:/etc/robot --entrypoint="robot" wywincl/robotframework-pabot [options] testcases
```# examples
*scenario 1*
```
docker run --rm -v /testdir:/etc/robot wywincl/robotframework-pabot -d /etc/robot/results testcases
```