Skip to content

Commit

Permalink
Disabling 4 unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-C committed Aug 4, 2023
1 parent 251d646 commit 1303032
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/encryption/test_encryption.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def custom_file_id():


@pytest.mark.skipif(
sys.version_info < (3, 8),
sys.version_info < (3, 8) or sys.version_info[:2] == (3, 11),
reason="fontTools dropped support for 3.7. https://github.com/py-pdf/fpdf2/pull/863",
)
def test_encrypt_font(tmp_path):
Expand Down
2 changes: 1 addition & 1 deletion test/fonts/test_add_font.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def test_render_en_dash(tmp_path): # issue-166


@pytest.mark.skipif(
sys.version_info < (3, 8),
sys.version_info < (3, 8) or sys.version_info[:2] == (3, 11),
reason="fontTools dropped support for 3.7. https://github.com/py-pdf/fpdf2/pull/863",
)
def test_add_font_otf(tmp_path):
Expand Down
2 changes: 1 addition & 1 deletion test/fonts/test_charmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


@pytest.mark.skipif(
sys.version_info < (3, 8),
sys.version_info < (3, 8) or sys.version_info[:2] == (3, 11),
reason="fontTools dropped support for 3.7. https://github.com/py-pdf/fpdf2/pull/863",
)
@pytest.mark.parametrize(
Expand Down
2 changes: 1 addition & 1 deletion test/fonts/test_font_fallback.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def test_fallback_font_ignore_style(tmp_path):


@pytest.mark.skipif(
sys.version_info < (3, 8),
sys.version_info < (3, 8) or sys.version_info[:2] == (3, 11),
reason="fontTools dropped support for 3.7. https://github.com/py-pdf/fpdf2/pull/863",
)
def test_fallback_font_with_overriden_get_fallback_font(tmp_path):
Expand Down

0 comments on commit 1303032

Please sign in to comment.