Skip to content

Commit

Permalink
Mark complexity tests as flaky. Optimistically closes #104.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jul 14, 2023
1 parent ee8ca1a commit 051fdc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ testing =
jaraco.functools
more_itertools
big-O
pytest-ignore-flaky

docs =
# upstream
Expand Down
2 changes: 2 additions & 0 deletions tests/test_complexity.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import unittest
import string

import pytest
import zipp
from jaraco.functools import compose
from more_itertools import consume
Expand All @@ -12,6 +13,7 @@


class TestComplexity(unittest.TestCase):
@pytest.mark.flaky
def test_implied_dirs_performance(self):
best, others = big_o.big_o(
compose(consume, zipp.CompleteDirs._implied_dirs),
Expand Down

0 comments on commit 051fdc1

Please sign in to comment.