<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: schettino72</title>
    <description>The latest articles on DEV Community by schettino72 (@schettino72).</description>
    <link>https://dev.to/schettino72</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F625946%2Faeba2074-6b94-47f6-9699-d4b6c19c8351.jpeg</url>
      <title>DEV Community: schettino72</title>
      <link>https://dev.to/schettino72</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/schettino72"/>
    <language>en</language>
    <item>
      <title>rut: A Python Test Runner That Skips Unaffected Tests</title>
      <dc:creator>schettino72</dc:creator>
      <pubDate>Sun, 08 Feb 2026 05:05:13 +0000</pubDate>
      <link>https://dev.to/schettino72/rut-a-python-test-runner-that-skips-unaffected-tests-3lpc</link>
      <guid>https://dev.to/schettino72/rut-a-python-test-runner-that-skips-unaffected-tests-3lpc</guid>
      <description>&lt;p&gt;Nothing bugs me more than waiting for the computer to do something I already know is pointless. Changed one file and watching 500 unrelated tests run? That's wasted time I'm not getting back.&lt;/p&gt;

&lt;p&gt;In 2008, I created &lt;a href="https://pydoit.org" rel="noopener noreferrer"&gt;doit&lt;/a&gt; — a build tool that tracks file dependencies and only rebuilds what changed. Same idea as &lt;code&gt;make&lt;/code&gt;, but for Python workflows.&lt;/p&gt;

&lt;p&gt;Then I built &lt;a href="https://github.com/pytest-dev/pytest-incremental" rel="noopener noreferrer"&gt;pytest-incremental&lt;/a&gt; — applying the same principle to tests. If you change &lt;code&gt;utils.py&lt;/code&gt;, only run tests that depend on it. Skip the rest.&lt;/p&gt;

&lt;p&gt;Now there's &lt;a href="https://github.com/schettino72/rut" rel="noopener noreferrer"&gt;rut&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why another test runner?
&lt;/h2&gt;

&lt;p&gt;pytest-incremental requires pytest. Its plugins are great individually, but combining multiple plugins into a consistent experience is hard — they step on each other, configuration gets fragile, and debugging interactions is painful.&lt;/p&gt;

&lt;p&gt;Codebases have grown orders of magnitude, and AI-assisted workflows are accelerating that further. We need new test infrastructure to keep up. Parallelization helps, but fast turnaround is still king — skipping what doesn't need to run beats running it faster.&lt;/p&gt;

&lt;p&gt;rut is simple:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;rut

rut              &lt;span class="c"&gt;# run all tests, build dependency graph&lt;/span&gt;
rut &lt;span class="nt"&gt;--changed&lt;/span&gt;    &lt;span class="c"&gt;# run only affected tests&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;rut analyzes your import graph. If &lt;code&gt;api.py&lt;/code&gt; imports &lt;code&gt;models.py&lt;/code&gt; which imports &lt;code&gt;utils.py&lt;/code&gt;, and you change &lt;code&gt;utils.py&lt;/code&gt;, rut knows to run tests for all three.&lt;/p&gt;

&lt;p&gt;Tests for modules that don't depend on &lt;code&gt;utils.py&lt;/code&gt;? Skipped.&lt;/p&gt;

&lt;p&gt;For well-structured codebases, this typically means 50-80% fewer tests on incremental runs.&lt;/p&gt;

&lt;p&gt;Read more: &lt;a href="https://schettino72.github.io/rut/articles/dependency-ordering" rel="noopener noreferrer"&gt;Dependency Ordering&lt;/a&gt; | &lt;a href="https://schettino72.github.io/rut/articles/incremental-testing" rel="noopener noreferrer"&gt;Incremental Testing&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Dependency-aware ordering&lt;/strong&gt;: foundational tests run first, so failures point to root causes&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Async support&lt;/strong&gt;: built-in, no plugins needed&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;--dry-run&lt;/code&gt;&lt;/strong&gt;: see what would run without running it&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;unittest compatible&lt;/strong&gt;: drop-in replacement for &lt;code&gt;python -m unittest&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;rut
rut
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://github.com/schettino72/rut" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>testing</category>
      <category>unittest</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Building MCPBench #1: Why we’re building it + first progress</title>
      <dc:creator>schettino72</dc:creator>
      <pubDate>Mon, 20 Oct 2025 07:59:23 +0000</pubDate>
      <link>https://dev.to/schettino72/building-mcpbench-1-why-were-building-it-first-progress-4j2g</link>
      <guid>https://dev.to/schettino72/building-mcpbench-1-why-were-building-it-first-progress-4j2g</guid>
      <description>&lt;p&gt;Hi folks — I’m building &lt;a href="https://mcpbench.ai/?utm_source=devto&amp;amp;utm_medium=post&amp;amp;utm_campaign=buildinpublic01" rel="noopener noreferrer"&gt;MCPBench&lt;/a&gt; to make it easier to discover and evaluate MCP servers. The goal is simple: reduce the time from “what’s out there?” to “I found the right server”.&lt;/p&gt;

&lt;p&gt;The problem I keep hearing&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;“Will this MCP really work for my use case?”&lt;/li&gt;
&lt;li&gt;“Do we have any real data on these integrations?”&lt;/li&gt;
&lt;li&gt;“Will the MCP work in conjunction with my system prompt &amp;amp; other context?”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What shipped this week&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A faster server browser with richer filters and “star” saves&lt;/li&gt;
&lt;li&gt;Per‑server pages with packages/remotes and quick links&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Why this matters&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MCP is growing fast; a clear map helps authors and users meet in the middle&lt;/li&gt;
&lt;li&gt;Consistent classification unlocks better filters and future compare views&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Open question for you&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Does our deployment framing (localhost / self‑hosted / hosted) match how you think about MCP servers?&lt;/li&gt;
&lt;li&gt;If not, what would you change or add?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What’s next&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Visualizations of registry (leaderboards, weekly trends)&lt;/li&gt;
&lt;li&gt;Details on available tools&lt;/li&gt;
&lt;li&gt;Drafting “config/install” snippets to get to first run faster&lt;/li&gt;
&lt;li&gt;A lightweight compare view for side‑by‑side evaluation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Try it and tell me what breaks&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Browse servers: &lt;a href="https://mcpbench.ai/?utm_source=devto&amp;amp;utm_medium=post&amp;amp;utm_campaign=buildinpublic01" rel="noopener noreferrer"&gt;mcpbench.ai&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’d love your feedback in the comments — or ping me on X/LinkedIn. If you publish an MCP server and want it highlighted, drop a link and what makes it special.&lt;/p&gt;

&lt;p&gt;Thanks for reading — building this in public and shipping weekly.&lt;/p&gt;

</description>
      <category>buildinpublic</category>
      <category>devtool</category>
      <category>ai</category>
      <category>mcp</category>
    </item>
  </channel>
</rss>
