An open API service indexing awesome lists of open source software.

https://github.com/josdem/py-vetlog-logger

Python logger for Vetlog database analysis
https://github.com/josdem/py-vetlog-logger

logging pymox python unittest

Last synced: 10 months ago
JSON representation

Python logger for Vetlog database analysis

Awesome Lists containing this project

README

          

Python Vetlog Logger
----------------------------

Python logger for [Vetlog](https://vetlog.org/) database analysis

#### Requirements

- Python version `3.11.9` or above

#### To install dependencies
```bash
pip install -r requirements.txt
```

or

```bash
pip3 install -r requirements.txt
```

#### To run tests

```bash
python -m unittest discover -s tests
```

or

```bash
python3 -m unittest discover -s tests
```

#### To run a single test

```bash
python -m unittest tests/test_name.py
```