https://github.com/taeefnajib/unit-testing-using-pytest
This repository contains all the example codes mentioned in the Medium article "Writing Unit Tests for Your Data Science Projects"
https://github.com/taeefnajib/unit-testing-using-pytest
Last synced: 4 days ago
JSON representation
This repository contains all the example codes mentioned in the Medium article "Writing Unit Tests for Your Data Science Projects"
- Host: GitHub
- URL: https://github.com/taeefnajib/unit-testing-using-pytest
- Owner: taeefnajib
- Created: 2023-08-31T23:54:05.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-31T23:55:46.000Z (almost 2 years ago)
- Last Synced: 2025-03-14T23:13:03.845Z (4 months ago)
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unit Testing Using Pytest
Pytest is a testing framework that allows you to write small, readable tests in Python, and can scale to support complex functional testing for applications and libraries.
In order to use pytest, we need to install it first with the following command:
```python
pip install -U pytest
```
To use the examples in this repo, you should also install `pandas`
```
pip install pandas
```