Skip to content

Commit

Permalink
skip unsupported unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
koxudaxi committed Feb 13, 2024
1 parent 976c5b1 commit b6113e3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6242,6 +6242,10 @@ def test_main_all_of_ref_self():


@freeze_time('2019-07-26')
@pytest.mark.skipif(
black.__version__.split('.')[0] == '19',
reason="Installed black doesn't support the old style",
)
def test_main_array_field_constraints():
with TemporaryDirectory() as output_dir:
output_file: Path = Path(output_dir) / 'output.py'
Expand Down

0 comments on commit b6113e3

Please sign in to comment.