diff --git a/gso/products/product_types/iptrunk.py b/gso/products/product_types/iptrunk.py
index 6f6b85b192874d0a120bdb7f4220940c11c8d190..9d71188ea260077f2eeec344d8c4a3ac75d02155 100644
--- a/gso/products/product_types/iptrunk.py
+++ b/gso/products/product_types/iptrunk.py
@@ -29,7 +29,7 @@ class Iptrunk(IptrunkProvisioning, lifecycle=[SubscriptionLifecycle.ACTIVE]):
 
 
 class ImportedIptrunkInactive(SubscriptionModel, is_base=True):
-    """An IP trunk that is inactive."""
+    """An imported IP trunk that is inactive."""
 
     iptrunk: IptrunkBlockInactive
 
@@ -37,6 +37,6 @@ class ImportedIptrunkInactive(SubscriptionModel, is_base=True):
 class ImportedIptrunk(
     ImportedIptrunkInactive, lifecycle=[SubscriptionLifecycle.PROVISIONING, SubscriptionLifecycle.ACTIVE]
 ):
-    """An IP trunk that is active."""
+    """An imported IP trunk that is active."""
 
     iptrunk: IptrunkBlock
diff --git a/pyproject.toml b/pyproject.toml
index 5162b2ca226c9a3181ee6942ec7153a57d909b25..34c2cc108340206038184e37e9c47d99e2ef0023 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -104,3 +104,12 @@ ban-relative-imports = "all"
 [tool.ruff.isort]
 known-third-party = ["pydantic", "migrations"]
 known-first-party = ["test", "docs"]
+
+[tool.pytest.ini_options]
+markers = [
+    "noautofixt"
+]
+filterwarnings = [
+    "ignore",
+    "default:::gso",
+]
diff --git a/requirements.txt b/requirements.txt
index eea6234f80576312a2ed5d94ab5d96f11395a5c3..73bb46ff0e83e703d78bca7c58a728f95e7fa696 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -5,7 +5,6 @@ pycountry==22.3.5
 pynetbox==7.2.0
 celery-redbeat==2.1.1
 celery==5.3.4
-typer==0.7.0
 
 # Test and linting dependencies
 celery-stubs==0.1.3
diff --git a/tox.ini b/tox.ini
index de7627e2dd6ed3c6700daff2e5016d50e4128ba0..60771640240f47641fe62c6ddd26cbd34bccef47 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,7 +2,8 @@
 envlist = py311
 
 [pytest]
-markers = workflow
+markers = "workflow,noautofixt"
+filterwarnings = "ignore,default:::gso"
 
 [testenv]
 passenv = DATABASE_URI_TEST,SKIP_ALL_TESTS,ENVIRONMENT_IGNORE_MUTATION_DISABLED