We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's about this test that used to be failing on Jelastic, which is not acceptable:
def test_set_container_env_vars_by_group_bug( control_client: ControlClient, valid_environment_with_env_vars: str ): # Arrange vars_to_set = { "MY_FIRST_NEW_VAR": "value1", "MY_SECOND_NEW_VAR": "value2" } initial_env_vars = control_client.get_container_env_vars_by_group(valid_environment_with_env_vars, "cp") assert "PATH" in initial_env_vars # Act control_client.set_container_env_vars_by_group(valid_environment_with_env_vars, vars=vars_to_set, node_group="cp") actual_env_vars = control_client.get_container_env_vars_by_group(valid_environment_with_env_vars, "cp") # Assert assert "PATH" in actual_env_vars
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It's about this test that used to be failing on Jelastic, which is not acceptable:
The text was updated successfully, but these errors were encountered: