mrcreamio / pytest-read-json-example

6 ways to read JSON in Pytest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pytest-read-json-example

This repository provides an example of how to read JSON data in Pytest using various methods. It demonstrates five different techniques to Read JSON Data in Pytest

Requirements

  • Python
  • Pytest
  • Black

How to Run the Unit Tests

  • Clone the GitHub repository:
git clone [https://github.com/ericsalesdeandrade/pytest-read-json-example.git](https://github.com/ericsalesdeandrade/pytest-read-json-example.git)
  • Navigate to the project directory:
cd pytest-read-json-example
  • Create a virtual environment, activate it and install the requirements:
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt

To run the tests execute the following command

pytest tests/unit/test_read_json.py -v -s --input-json='{"name": "Ravi", "age": 90, "city": "New Delhi"}'

About

6 ways to read JSON in Pytest


Languages

Language:Python 100.0%