From 8b32c1d730b10adddef40b941c32c374901422d9 Mon Sep 17 00:00:00 2001
From: Joscha Schmiedt <joscha@schmiedt.dev>
Date: Sat, 20 Apr 2024 22:27:50 +0200
Subject: [PATCH] Exclude test_high_level_api from mypy

---
 Makefile                         | 2 +-
 unittests/test_high_level_api.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 9e4d30db..21ea40ac 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,7 @@ lint:
 .PHONY: lint
 
 mypy:
-	mypy src/linkahead/common unittests --exclude high_level_api.py --exclude connection.py
+	mypy src/linkahead/common unittests
 .PHONY: mypy
 
 unittest:
diff --git a/unittests/test_high_level_api.py b/unittests/test_high_level_api.py
index be57e3c7..82c1a5ca 100644
--- a/unittests/test_high_level_api.py
+++ b/unittests/test_high_level_api.py
@@ -21,7 +21,7 @@
 #
 # Test high level api module
 # A. Schlemmer, 02/2022
-
+# type: ignore
 
 import linkahead as db
 from linkahead.high_level_api import (convert_to_entity, convert_to_python_object,
-- 
GitLab