From 49c175b61091f736d2bcdeb0f4d1d12e4ec977ed Mon Sep 17 00:00:00 2001 From: Tatiana Smirnova Date: Fri, 10 May 2024 15:31:54 +0300 Subject: [PATCH] add pythonpath --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 88bac04..eb06db1 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ PYTHONPATH = . .PHONY: test test: - pytest --cov=audit_log -vv tests + PYTHONPATH=. pytest --cov=audit_log -vv tests .PHONY: fmt