Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Negin-Ulster committed Dec 30, 2022
1 parent 9b9090f commit f9c6aba
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions src/syrupy/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,18 @@

import pytest

from syrupy.location import PyTestLocation
from syrupy.utils import (
is_xdist_controller,
is_xdist_worker,
)

from .constants import EXIT_STATUS_FAIL_UNUSED
from .data import SnapshotCollections
from .location import PyTestLocation
from .report import SnapshotReport
from .utils import (
is_xdist_controller,
is_xdist_worker,
)
from .types import (
SerializedData,
SnapshotIndex,
)
from .utils import (
is_xdist_controller,
is_xdist_worker,
)

if TYPE_CHECKING:
from .assertion import SnapshotAssertion
Expand Down

1 comment on commit f9c6aba

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: f9c6aba Previous: 02abef5 Ratio
benchmarks/test_1000x.py::test_1000x_reads 0.8596765087674577 iter/sec (stddev: 0.04367617137987548) 0.8381195242511715 iter/sec (stddev: 0.04240394140227035) 0.97
benchmarks/test_1000x.py::test_1000x_writes 0.8337334645337632 iter/sec (stddev: 0.040461485463870024) 0.8626650008455868 iter/sec (stddev: 0.05153168408309042) 1.03
benchmarks/test_standard.py::test_standard 0.7995897247551862 iter/sec (stddev: 0.04321460132052149) 0.7465173870618954 iter/sec (stddev: 0.1502009356924296) 0.93

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.