- Edit bin/publish.sh if needed
- Run
./bin/publish.shto deploy your image to docker hub - Create docker-compose.yml file with the following content:
# Example of docker-compose.yml
version: '3.9'
services:
e2e:
image: antonpegov/zeropool-e2e:latest
environment:
- LT_USERNAME=your_username
- LT_ACCESS_KEY=your_lambdatest_access_key- Run
docker-compose up -dto start the container
- Install Visual Studio Code
- Install Robot Framework Language Server plugin
- Create an account on LambdaTest
- Get the username and access key
- In the root directory run the following commands
`pip3 install virtualenv`
`python -m virtualenv venv`
`source .\venv\scripts\activate`
`pip install -r requirements.txt`- Set LambdaTest Username and Access Key in environment variables.
- For Linux/macOS:
export LT_USERNAME= undefined
export LT_ACCESS_KEY= undefined- For Windows:
set LT_USERNAME= undefined
set LT_ACCESS_KEY= undefined- Run tests
`./make <test_name_from_Makefile>`*** Note: Make and Makefile used to run tests in parallel. Special subscription required for parallel testing.