josh-fell commented on code in PR #29145:
URL: https://github.com/apache/airflow/pull/29145#discussion_r1087056660


##########
.coveragerc:
##########
@@ -16,14 +16,21 @@
 # specific language governing permissions and limitations
 # under the License.
 
-[report]
+[run]
+branch = True
+source = airflow
 omit =
-    tests/*
-    scripts/*
-    dev/*
     airflow/migrations/*
     airflow/www/node_modules/**
     airflow/_vendor/**
+    providers/**/example_dags/**
 
-[run]
-relative_files = True
+[report]
+skip_empty = True
+exclude_lines =
+    pragma: no cover
+    @abstractmethod
+    @abstractproperty
+    def __repr__
+    raise NotImplementedError
+    if __name__ == .__main__.:

Review Comment:
   ```suggestion
       if __name__ == .__main__.:
       if TYPE_CHECKING:
   ```
   Since code behind type checking doesn't execute at runtime.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to