Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vogoltsov/robotframework-docker
Robot Framework library for testing with Docker containers and Docker Compose
https://github.com/vogoltsov/robotframework-docker
automation docker docker-compose python robotframework testautomation testing
Last synced: 29 days ago
JSON representation
Robot Framework library for testing with Docker containers and Docker Compose
- Host: GitHub
- URL: https://github.com/vogoltsov/robotframework-docker
- Owner: vogoltsov
- License: apache-2.0
- Created: 2019-06-25T19:01:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-02T00:14:41.000Z (8 months ago)
- Last Synced: 2024-09-26T20:52:08.434Z (about 1 month ago)
- Topics: automation, docker, docker-compose, python, robotframework, testautomation, testing
- Language: Python
- Homepage:
- Size: 65.4 KB
- Stars: 16
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://img.shields.io/badge/License-Apache%202.0-blue.svg
:target: https://opensource.org/licenses/Apache-2.0
.. image:: https://travis-ci.com/vogoltsov/robotframework-docker.svg?branch=master
:target: https://travis-ci.com/vogoltsov/robotframework-docker
.. image:: https://badge.fury.io/py/robotframework-docker.svg
:target: https://badge.fury.io/py/robotframework-dockerRobotFramework Docker
=====================.. contents::
.. comment: long_description split
Short Description
-----------------`Robot Framework`_ library for working with ``docker`` and
``docker-compose``.Installation
------------Installation using pip
~~~~~~~~~~~~~~~~~~~~~~~~~.. code:: bash
pip3 install robotframework-docker
Installation from sources
~~~~~~~~~~~~~~~~~~~~~~~~~.. code:: bash
python3 setup.py install
Example
-------.. code:: robotframework
*** Settings ***
Documentation DockerComposeLibrary tests.
Library DockerComposeLibrary
Library RequestsLibrary
Test Setup Docker Compose Up
Test Teardown Docker Compose Down*** Test Cases ***
Start Apache Web Server
${service} = Get Exposed Service httpd 80
Log To Console http has started and is available at http://${service.host}:${service.port}License
-------Apache License 2.0
.. _Robot Framework: https://robotframework.org/