• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

EIT-ALIVE / eitprocessing / 17213080321

25 Aug 2025 03:19PM UTC coverage: 84.761% (+2.0%) from 82.774%
17213080321

push

github

psomhorst
Bump version: 1.7.3 → 1.8.0

745 of 958 branches covered (77.77%)

Branch coverage included in aggregate %.

1 of 1 new or added line in 1 file covered. (100.0%)

37 existing lines in 9 files now uncovered.

2737 of 3150 relevant lines covered (86.89%)

0.87 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

90.91
/eitprocessing/filters/__init__.py
1
from abc import ABC, abstractmethod
1✔
2
from typing import TypeVar
1✔
3

4
import numpy as np
1✔
5

6
from eitprocessing.datahandling.eitdata import EITData
1✔
7
from tests.test_breath_detection import ContinuousData
1✔
8

9
T = TypeVar("T", bound=np.ndarray | ContinuousData | EITData)
1✔
10

11

12
class TimeDomainFilter(ABC):
1✔
13
    """Parent class for time domain filters."""
14

15
    available_in_gui = True
1✔
16

17
    @abstractmethod
1✔
18
    def apply(self, input_data: T, **kwargs) -> T:
1✔
19
        """Apply the filter to the input data."""
UNCOV
20
        ...
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc