@@ -412,8 +412,9 @@ def test_missing_variables_env(self):
412
412
f"Environment variables file '{ env_dir / 'variables.env' } ' "
413
413
f"not found."
414
414
)
415
- with pytest .raises (errors .ComposerCliError , match = exp_error ) :
415
+ with pytest .raises (errors .ComposerCliError ) as err :
416
416
environment .load_environment_variables (env_dir )
417
+ assert str (err ) == exp_error
417
418
418
419
def test_load_environment_variables_filter_blocked_env_vars (self ):
419
420
env_dir = (TEST_DATA_DIR / "blocked_env_vars" ).resolve ()
@@ -465,10 +466,9 @@ def test_invalid_env_variables(self):
465
466
exp_error = constants .INVALID_ENV_VARIABLES_FILE_ERROR .format (
466
467
env_file_path = env_file_path , line = "AIRFLOW_KEYVALUE"
467
468
)
468
- with pytest .raises (
469
- errors .FailedToParseVariablesError , match = re .escape (exp_error )
470
- ):
469
+ with pytest .raises (errors .FailedToParseVariablesError ) as err :
471
470
environment .load_environment_variables (env_dir )
471
+ assert str (err ) == exp_error
472
472
473
473
@mock .patch ("composer_local_dev.environment.docker.from_env" )
474
474
@mock .patch (
@@ -484,10 +484,10 @@ def test_missing_requirements(self, mocked_docker, mocked_tag, tmpdir):
484
484
location = "location" ,
485
485
dags_path = str (env_dir ),
486
486
)
487
- with pytest .raises (
488
- errors .ComposerCliError , match = f"Missing '{ requirement_file } ' file."
489
- ):
487
+ exp_error = f"Missing '{ requirement_file } ' file."
488
+ with pytest .raises (errors .ComposerCliError ) as err :
490
489
env .assert_requirements_exist ()
490
+ assert str (err ) == exp_error
491
491
492
492
@mock .patch ("composer_local_dev.environment.docker.from_env" )
493
493
def test_get_container (self , mocked_docker , default_env ):
@@ -1059,17 +1059,19 @@ def test_invalid_config(self):
1059
1059
config_path = config_path , error = ""
1060
1060
)
1061
1061
with pytest .raises (
1062
- errors .FailedToParseConfigError , match = exp_error
1063
- ), working_directory (env_dir ):
1062
+ errors .FailedToParseConfigError
1063
+ ) as err , working_directory (env_dir ):
1064
1064
environment .EnvironmentConfig (env_dir , None )
1065
+ assert str (err ) == exp_error
1065
1066
1066
1067
def test_missing_config (self ):
1067
1068
env_dir = (TEST_DATA_DIR / "missing_composer" ).resolve ()
1068
1069
exp_error = f"Configuration file '{ env_dir / 'config.json' } ' not found."
1069
- with pytest .raises (
1070
- errors . ComposerCliError , match = exp_error
1071
- ), working_directory ( env_dir ) :
1070
+ with pytest .raises (errors . ComposerCliError ) as err , working_directory (
1071
+ env_dir
1072
+ ):
1072
1073
environment .EnvironmentConfig (env_dir , None )
1074
+ assert str (err ) == exp_error
1073
1075
1074
1076
@mock .patch (
1075
1077
"composer_local_dev.environment.EnvironmentConfig.load_configuration_from_file"
@@ -1091,10 +1093,9 @@ def test_param_invalid_int(self, mocked_load_conf, tmp_path, param, value):
1091
1093
exp_error = constants .INVALID_INT_VALUE_ERROR .format (
1092
1094
param_name = param , value = value
1093
1095
)
1094
- with pytest .raises (
1095
- errors .FailedToParseConfigParamIntError , match = exp_error
1096
- ):
1096
+ with pytest .raises (errors .FailedToParseConfigParamIntError ) as err :
1097
1097
environment .EnvironmentConfig (tmp_path , None )
1098
+ assert str (err ) == exp_error
1098
1099
1099
1100
@mock .patch (
1100
1101
"composer_local_dev.environment.EnvironmentConfig.load_configuration_from_file"
@@ -1122,7 +1123,6 @@ def test_param_invalid_int_range(
1122
1123
exp_error = constants .INVALID_INT_RANGE_VALUE_ERROR .format (
1123
1124
param_name = param , value = value , allowed_range = allowed_range
1124
1125
)
1125
- with pytest .raises (
1126
- errors .FailedToParseConfigParamIntRangeError , match = exp_error
1127
- ):
1126
+ with pytest .raises (errors .FailedToParseConfigParamIntRangeError ) as err :
1128
1127
environment .EnvironmentConfig (tmp_path , None )
1128
+ assert str (err ) == exp_error
0 commit comments