Unit testing with pytest.
Clone the repository, install the dependencies and invoke the unit tests:
git clone https://github.com/chandur626/SE-Fall-21-Project-22
cd SE-Fall-21-Project-22
pip install -r requirements.txt
pytest
Python3 and install pytest via pip package manager or run the below command to install all the dependencies.
pip install -r requirements.txt
Run pytest command in the repository root.
pytest
To add custom unit tests, create a new python file with test_ functions under test directory or edit the existing test_operations.py file.