You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def test_config_all_upper_case():
c = Config.__class__.__dict__.items()
for field, config_value in Config.__dict__.items():
if not isinstance(config_value, _ConfigValue):
continue
> assert config_value.env_key == config_value.env_key.upper()
E AssertionError: assert 'ELASTIC_APM_..._min_duration' == 'ELASTIC_APM_..._MIN_DURATION'
E - ELASTIC_APM_EXIT_SPAN_MIN_DURATION
E + ELASTIC_APM_exit_span_min_duration
tests/config/tests.py:450: AssertionError
Initializing / Test / Python-python-3.7-1 / test_config_all_upper_case – tests.config.tests
def test_config_all_upper_case():
c = Config.__class__.__dict__.items()
for field, config_value in Config.__dict__.items():
if not isinstance(config_value, _ConfigValue):
continue
> assert config_value.env_key == config_value.env_key.upper()
E AssertionError: assert 'ELASTIC_APM_..._min_duration' == 'ELASTIC_APM_..._MIN_DURATION'
E - ELASTIC_APM_EXIT_SPAN_MIN_DURATION
E + ELASTIC_APM_exit_span_min_duration
tests/config/tests.py:450: AssertionError
Initializing / Test / Python-python-3.10-1 / test_config_all_upper_case – tests.config.tests
def test_config_all_upper_case():
c = Config.__class__.__dict__.items()
for field, config_value in Config.__dict__.items():
if not isinstance(config_value, _ConfigValue):
continue
> assert config_value.env_key == config_value.env_key.upper()
E AssertionError: assert 'ELASTIC_APM_..._min_duration' == 'ELASTIC_APM_..._MIN_DURATION'
E - ELASTIC_APM_EXIT_SPAN_MIN_DURATION
E + ELASTIC_APM_exit_span_min_duration
tests/config/tests.py:450: AssertionError
Initializing / Test / Python-python-3.6-1 / test_config_all_upper_case – tests.config.tests
def test_config_all_upper_case():
c = Config.__class__.__dict__.items()
for field, config_value in Config.__dict__.items():
if not isinstance(config_value, _ConfigValue):
continue
> assert config_value.env_key == config_value.env_key.upper()
E AssertionError: assert 'ELASTIC_APM_..._min_duration' == 'ELASTIC_APM_..._MIN_DURATION'
E - ELASTIC_APM_EXIT_SPAN_MIN_DURATION
E + ELASTIC_APM_exit_span_min_duration
tests/config/tests.py:450: AssertionError
Initializing / Test / windows-3.7-none / test_config_all_upper_case – tests.config.tests
def test_config_all_upper_case():
c = Config.__class__.__dict__.items()
for field, config_value in Config.__dict__.items():
if not isinstance(config_value, _ConfigValue):
continue
> assert config_value.env_key == config_value.env_key.upper()
E AssertionError: assert 'ELASTIC_APM_..._min_duration' == 'ELASTIC_APM_..._MIN_DURATION'
E - ELASTIC_APM_EXIT_SPAN_MIN_DURATION
E + ELASTIC_APM_exit_span_min_duration
tests\config\tests.py:450: AssertionError
Initializing / Test / windows-3.8-none / test_config_all_upper_case – tests.config.tests
def test_config_all_upper_case():
c = Config.__class__.__dict__.items()
for field, config_value in Config.__dict__.items():
if not isinstance(config_value, _ConfigValue):
continue
> assert config_value.env_key == config_value.env_key.upper()
E AssertionError: assert 'ELASTIC_APM_..._min_duration' == 'ELASTIC_APM_..._MIN_DURATION'
E - ELASTIC_APM_EXIT_SPAN_MIN_DURATION
E + ELASTIC_APM_exit_span_min_duration
tests\config\tests.py:450: AssertionError
Initializing / Test / windows-3.9-none / test_config_all_upper_case – tests.config.tests
def test_config_all_upper_case():
c = Config.__class__.__dict__.items()
for field, config_value in Config.__dict__.items():
if not isinstance(config_value, _ConfigValue):
continue
> assert config_value.env_key == config_value.env_key.upper()
E AssertionError: assert 'ELASTIC_APM_..._min_duration' == 'ELASTIC_APM_..._MIN_DURATION'
E - ELASTIC_APM_EXIT_SPAN_MIN_DURATION
E + ELASTIC_APM_exit_span_min_duration
tests\config\tests.py:450: AssertionError
Initializing / Test / Python-python-3.8-1 / test_config_all_upper_case – tests.config.tests
def test_config_all_upper_case():
c = Config.__class__.__dict__.items()
for field, config_value in Config.__dict__.items():
if not isinstance(config_value, _ConfigValue):
continue
> assert config_value.env_key == config_value.env_key.upper()
E AssertionError: assert 'ELASTIC_APM_..._min_duration' == 'ELASTIC_APM_..._MIN_DURATION'
E - ELASTIC_APM_EXIT_SPAN_MIN_DURATION
E + ELASTIC_APM_exit_span_min_duration
tests/config/tests.py:450: AssertionError
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
closes #1428