An open API service indexing awesome lists of open source software.

https://github.com/danielwhatmuff/robot-docker

Docker build for the Robot Testing Tool
https://github.com/danielwhatmuff/robot-docker

Last synced: 4 months ago
JSON representation

Docker build for the Robot Testing Tool

Awesome Lists containing this project

README

          

Docker image for the Robot Framework
===============

.. contents::
:local:

Overview
------------

Information on the Robot Framework can be found here:

`Robot Framework `_

Run Robot inside Docker
------------

To build a Robot Docker image::

docker build -t robot-docker .

To run tests, mount a directory and pass the ROBOT_TESTS env var::

docker run --rm \
-e ROBOT_TESTS=/path/to/tests/ \
-v /path/to/tests/:/path/to/tests/ \
-ti \
robot-docker

Example of running the sample tests::

docker run --rm \
-e ROBOT_TESTS=/sample_tests/ \
-v $(pwd)/sample_tests:/sample_tests \
-ti robot-docker

Use the Docker Hub automated build::

docker pull danielwhatmuff/robot-docker