Skip to content

Commit dc9cc2a

Browse files
committed
build: coding-dojo-jedi 1.70.0a5
1 parent 4d78790 commit dc9cc2a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

incolume/py/coding_dojo_jedi/dojo20231128/test_20231128.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,7 @@ class TestConsumingIndexPageSWAPI:
863863
sys.platform.casefold().startswith('win'),
864864
reason='does not run on windows',
865865
)
866-
@pytest.mark.webtest()
866+
@pytest.mark.webtest
867867
@pytest.mark.xfail(raises=[requests.exceptions.ReadTimeout])
868868
def test_case_1(self) -> None:
869869
"""Test it."""
@@ -885,7 +885,7 @@ def test_case_2(self) -> None:
885885
sys.platform.casefold().startswith('win'),
886886
reason='does not run on windows',
887887
)
888-
@pytest.mark.webtest()
888+
@pytest.mark.webtest
889889
@pytest.mark.xfail(
890890
raises=[
891891
requests.exceptions.ReadTimeout,
@@ -896,7 +896,7 @@ def test_case_3(self) -> None:
896896
"""Test it with mock."""
897897
assert consuming_api_swapi_index_page_1() == self.values
898898

899-
@pytest.mark.skip()
899+
@pytest.mark.skip
900900
def test_case_4(self) -> None:
901901
"""Test it with mock."""
902902
with mock.patch(f'{__pkg__}.requests.get') as m_req_get:
@@ -906,8 +906,8 @@ def test_case_4(self) -> None:
906906
assert consuming_api_swapi_index_page_1() == self.values
907907
assert m_req_get.call_args_list == []
908908

909-
@pytest.mark.skip()
910-
@pytest.mark.webtest()
909+
@pytest.mark.skip
910+
@pytest.mark.webtest
911911
def test_case_5(self) -> None:
912912
"""Test it with mock."""
913913
with mock.patch(

incolume/py/coding_dojo_jedi/dojo20250106/test_20250106.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from copy import copy
1212

1313

14-
@pytest.mark.offci()
14+
@pytest.mark.offci
1515
class TestCasePreprocessImageOCR:
1616
"""Test case class."""
1717

@@ -85,7 +85,7 @@ def test_class_save(self, entrance, expected) -> NoReturn:
8585
)
8686

8787

88-
@pytest.mark.offci()
88+
@pytest.mark.offci
8989
class TestCasePPIOCR:
9090
"""Test case."""
9191

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "coding-dojo-jedi"
3-
version = "1.70.0a4"
3+
version = "1.70.0a5"
44
description = "códigos da guilda jedi incolume"
55
requires-python = ">=3.10,<4"
66
classifiers = [

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def semver_regex() -> str:
154154
return r'^\d+(\.\d+){2}((-\w+\.\d+)|(\w+\d+))?$'
155155

156156

157-
@pytest.fixture()
157+
@pytest.fixture
158158
def fakefile() -> Path:
159159
"""Return fiction file for tests."""
160160
return genfile(prefix='File-testing-')

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)