Marcin Kozak

Results 39 issues of Marcin Kozak

Now, `easycheck` can also raise a single exception. So, it's impossible to ```python raise Exception1 from Exception2 ``` It seems to make sense to enable this functionality. This can be...

Add performance tests (using `perftester`) to analyze and test how the `easycheck` functions perform against their built-in counterparts.

`check_if_not` can have a nice use in the following scenario. Imagine you have two arguments, say `x` and `y`, whose combination of `x == 1 and y == 2` is...

Add function `check_subclass` to check if an object is a subclass. For example: ```python >>> class MyWarning(Warning): pass >>> check_subclass(MyWarning, str) False >>> check_subclass(MyWarning, Warning) True ```

Add function `check_if_sorted()` and its alias `assert_if_sorted()`.

`check_argument()` is actually a function that has potential to be used most often among the `easycheck` functions, so would be good to provide an example of its use in the...

_Note: for the moment not replicable_ I have noticed some issues when using `easycheck` with `pandas`, but in quite complex situations. I cannot, however, replicate this situation, but it's clearly...

Move the build backend from `setuptools` to `pyproject.toml` and `build` based.