Skip to content

Commit

Permalink
chore: ruff format tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrkalinin committed Dec 14, 2024
1 parent 0ca8f8a commit 67ad16c
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"""Unit tests for the copairs package."""
"""Unit tests for the copairs package."""
1 change: 1 addition & 0 deletions tests/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Helper functions for testing."""

from itertools import product
from typing import Dict

Expand Down
1 change: 1 addition & 0 deletions tests/test_build_rank_multilabel.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the concatenation of ranges."""

import numpy as np

from copairs.compute import concat_ranges
Expand Down
1 change: 1 addition & 0 deletions tests/test_compute.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test pairwise distance calculation functions."""

import numpy as np

from copairs import compute
Expand Down
1 change: 1 addition & 0 deletions tests/test_map.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for (mean) Average Precision calculation."""

import numpy as np
import pandas as pd
import pytest
Expand Down
1 change: 1 addition & 0 deletions tests/test_map_filter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests data filtering by query."""

import numpy as np
import pytest

Expand Down
1 change: 1 addition & 0 deletions tests/test_matching_any.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test matching with `any` conditions using simulated data."""

from string import ascii_letters

import numpy as np
Expand Down
1 change: 1 addition & 0 deletions tests/test_matching_multilabel.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for the multilabel matching implementation."""

import pandas as pd

from copairs.matching import MatcherMultilabel
Expand Down
1 change: 1 addition & 0 deletions tests/test_replicating.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for the replicating module."""

from numpy.random import default_rng

from copairs import Matcher
Expand Down

0 comments on commit 67ad16c

Please sign in to comment.