Skip to content

ReportPortal.io

Carlos Kidman edited this page May 12, 2020 · 4 revisions

Setup

https://reportportal.io/docs/Deploy-with-Docker

  1. Install Docker and give it 3GB+ Memory

  2. Download docker-compose.yml file from the repo

  3. If on Windows, you have to configure the .yml file

    Change from unix to windows host in the postgres service:

    volumes:
      # For windows host
      - postgres:/var/lib/postgresql/data
      # For unix host
      # - ./data/postgres:/var/lib/postgresql/data
    

    Then uncomment this at the bottom of the file:

    # Docker volume for Windows host
    volumes:
      postgres:
    
  4. docker-compose up

    docker-compose -p reportportal up -d --force-recreate
  5. Visit the Report Portal UI by going to <HOST>:8080

    http://localhost:8080/ui
    
  6. Login (change the password afterwards)

    default\1q2w3e
    or
    superadmin\erebus
    

pytest plugin

https://github.com/reportportal/agent-python-pytest

Clone this wiki locally