- Project is running with python 3.9+
- Poetry is required to work with dependencies
- Clone your reposiotory:
git clone [email protected]:szewczykmira/spotiweekly.git- Enter the repository and create virtualenv with python 3.9
cd spotiweekly
mkvirtualenv -p python3.9 spotiweekly- [Optional] you can update project's name in
pyproject.toml - Install dependencies
make install- Install pre-commit hooks
pre-commit installmake test- running test with checking test coverage
pytest --cov={repository_name} tests/make run