Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pytest-with-eric/pytest-pycharm-integration-example
How To Set Up Pytest With PyCharm (Step-By-Step Guide)
https://github.com/pytest-with-eric/pytest-pycharm-integration-example
pycharm-ide pycharm-settings pytest-pycharm
Last synced: 19 days ago
JSON representation
How To Set Up Pytest With PyCharm (Step-By-Step Guide)
- Host: GitHub
- URL: https://github.com/pytest-with-eric/pytest-pycharm-integration-example
- Owner: Pytest-with-Eric
- Created: 2024-02-17T15:13:33.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-11T16:25:13.000Z (8 months ago)
- Last Synced: 2024-10-16T22:15:46.188Z (about 1 month ago)
- Topics: pycharm-ide, pycharm-settings, pytest-pycharm
- Language: Python
- Homepage: https://pytest-with-eric.com/integrations/pytest-pycharm-integration/
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pytest PyCharm Integration Example
This repo contains the sample code for the article - [How To Set Up Pytest With PyCharm (Step-By-Step Guide)](https://pytest-with-eric.com/integrations/pytest-pycharm-integration/)
This project explains how to use Pytest with PyCharm. It contains a simple example of a Python project with a few unit tests.
# Requirements
* Python (3.12)Please install the dependencies via the `requirements.txt` file using
```commandline
pip install -r requirements.txt
```
If you don't have Pip installed please follow instructions online on how to do it.# How To Run the Unit Tests
To run the Unit Tests, from the root of the repo run
```commandline
pytest -v -s
```If you have any questions about the project please raise an Issue on GitHub.