Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
daizutabi committed Jan 19, 2025
1 parent d3af8a3 commit cbb2c07
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/axes/conftest.py

This file was deleted.

3 changes: 3 additions & 0 deletions tests/axes/test_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
from xlwings.constants import ChartType, TickMark

from xlviews.axes import Axes
from xlviews.utils import is_excel_installed

pytestmark = pytest.mark.skipif(not is_excel_installed(), reason="Excel not installed")


@pytest.fixture
Expand Down
3 changes: 3 additions & 0 deletions tests/axes/test_position.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

from xlviews.axes import Axes
from xlviews.sheetframe import SheetFrame
from xlviews.utils import is_excel_installed

pytestmark = pytest.mark.skipif(not is_excel_installed(), reason="Excel not installed")


@pytest.mark.parametrize(
Expand Down
3 changes: 3 additions & 0 deletions tests/axes/test_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
from xlwings.constants import ChartType

from xlviews.axes import Axes
from xlviews.utils import is_excel_installed

pytestmark = pytest.mark.skipif(not is_excel_installed(), reason="Excel not installed")


@pytest.fixture
Expand Down
3 changes: 3 additions & 0 deletions tests/axes/test_style.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
from xlwings.constants import ChartType

from xlviews.axes import Axes
from xlviews.utils import is_excel_installed

pytestmark = pytest.mark.skipif(not is_excel_installed(), reason="Excel not installed")


@pytest.fixture(scope="module")
Expand Down

0 comments on commit cbb2c07

Please sign in to comment.