We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_init_kwargs_alias_resolution_deterministic
1 parent eb7b0ef commit 021cbaaCopy full SHA for 021cbaa
tests/test_settings.py
@@ -699,11 +699,6 @@ class Example(BaseSettings):
699
assert Example(name='john', PREFIX_SURNAME='doe').model_dump() == {'name': 'john', 'last_name': 'doe'}
700
701
702
-@pytest.mark.xfail(
703
- reason='This test is expected to fail in some sessions due to `InitSettingsSource`s non-deterministic behaviour.'
704
- "Simply repeating through parameterization won't help as the underlying reason is the non-deterministic "
705
- 'nature of python sets, which will remain constant within the same session.'
706
-)
707
def test_init_kwargs_alias_resolution_deterministic():
708
class Example(BaseSettings):
709
name: str
0 commit comments