https://github.com/sloppycoder/py_jira_playground
https://github.com/sloppycoder/py_jira_playground
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sloppycoder/py_jira_playground
- Owner: sloppycoder
- Created: 2022-11-14T10:44:25.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T09:04:38.000Z (over 3 years ago)
- Last Synced: 2025-01-11T08:14:02.020Z (over 1 year ago)
- Language: Python
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to your Python project!
This project is set up Python project with dev tooling pre-configured
* black
* flake8
* isort
* mypy
* VS Code support
## Setup
```
# create virtualenv
$ poetry shell
# install dependencies
(.venv)$ poetry install
```
## Develop the code for the stack
```
# run unit tests
pytest
```