https://github.com/wywincl/robotframework-pabot
pabot command in docker environment
https://github.com/wywincl/robotframework-pabot
Last synced: 3 months 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-07T09:04:45.000Z (about 7 years ago)
- Last Synced: 2025-03-01T20:33:03.949Z (over 1 year 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` 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
```