Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 15 hours 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-31T23:55:46.000Z (over 1 year ago)
- Last Synced: 2023-09-01T18:20:04.679Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- 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
```