Andreas Wacknitz
2024-04-09 7bea32fd382fe993229cd2db29c3a13cb8138b09
commit | author | age
ad5773 1 https://github.com/pytest-dev/pytest/issues/12186
add56e 2
ad5773 3 Please note it is currently impossible to uninstall typeguard because
MT 4 package/pkg transitionally depends on it.  The dependency chain is:
5
6 package/pkg -> cherrypy -> jaraco-collections -> jaraco-text -> inflect -> typeguard
7
8 --- pytest-ignore-flaky-2.2.0/tests/test_functional.py.orig
9 +++ pytest-ignore-flaky-2.2.0/tests/test_functional.py
10 @@ -1,3 +1,5 @@
11 +import pytest
12 +
13  pytest_plugins = ('pytester',)
add56e 14  
ad5773 15  
MT 16 @@ -50,6 +52,7 @@
17  """
18  
19  
20 +@pytest.mark.skip(reason="fails with typeguard installed")
21  def test_success_flaky(testdir, capsys):
22      test = testdir.makepyfile(TEST_SAMPLE_SUCCEED)
23      rec = testdir.inline_run('--ignore-flaky', test)