From bfcc329ff452f43927eca31c7b911ad9e1a45775 Mon Sep 17 00:00:00 2001 From: Dmytro Parfeniuk Date: Wed, 26 Jun 2024 16:55:40 +0300 Subject: [PATCH] running tests command is added to the Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 53f3537..4f8e169 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ style: isort src tests flake8 src tests --max-line-length 88 -# test: -# pytest tests +test: + python -m pytest -s -vvv --cache-clear tests/ build: python setup.py sdist bdist_wheel