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
- Host: GitHub
- URL: https://github.com/josdem/py-vetlog-logger
- Owner: josdem
- Created: 2024-04-28T19:16:51.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-29T14:55:59.000Z (almost 2 years ago)
- Last Synced: 2025-03-10T20:47:52.074Z (over 1 year ago)
- Topics: logging, pymox, python, unittest
- Language: Python
- Homepage: https://vetlog.org/
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```