```diff
--- test_files/110-original.txt	2025-03-07 19:06:22
+++ test_files/110-modified.txt	2025-03-07 19:06:22
@@ -24,6 +24,7 @@
         yield mock
 
 
+@pytest.mark.swe
 class TestIntegration:
     image_name = "composio/swe:testing"
 
@@ -32,9 +33,7 @@
         client = docker.from_env()
         dockerfile_path = os.path.join(os.path.dirname(__file__), "test_docker")
         logger.info(f"Building Docker image from path: {dockerfile_path}")
-        image, build_logs = client.images.build(
-            path=dockerfile_path, tag=cls.image_name, rm=True
-        )
+        client.images.build(path=dockerfile_path, tag=cls.image_name, rm=True)
         logger.info("Docker image built successfully.")
 
     def test_setup_workspace(self):
```
