This project contains automated tests for the Trello website.
-
Create a
.env
file based on the.env.draft
template for environment variables. -
Create and activate virtual environment if needed
python3 -m venv venv
source venv/bin/activate
- Install dependencies:
pip install -r requirements.txt
Run tests
pytest
you can modify in pytest.ini
Run tests using Dockerfile
docker build -t app_image .
docker run -p 8000:8000 app_image
This allows viewing the report locally after building.
Open link to see html report
http://localhost:8000/html_report/report.html
Apply python standard formatting.
for more information
To run, run the following command in the terminal
black .
Your Tool For Style Guide Enforcement
for more information
To run, run the following command in the terminal
flake8