16
16
def test_non_existent_package (betamax_session ):
17
17
with pytest .raises (PackageNotFoundError ):
18
18
create_config_contents (
19
- package = " definitely-nonexisting-package-name" ,
19
+ { " package" : " definitely-nonexisting-package-name"} ,
20
20
session = betamax_session )
21
21
22
22
@@ -29,8 +29,8 @@ def test_non_existent_package(betamax_session):
29
29
def test_automatically_generated_config_is_valid (betamax_parametrized_session , package , version ):
30
30
"""Run the config rendering in fully automated mode and compare the results"""
31
31
config = create_config_contents (
32
- package = package ,
33
- version = version ,
32
+ { " package" : package ,
33
+ " version" : version } ,
34
34
session = betamax_parametrized_session ,
35
35
)
36
36
@@ -50,9 +50,9 @@ def test_automatically_generated_config_with_alt_python_is_valid(
50
50
):
51
51
"""Run the config rendering in fully automated mode and compare the results"""
52
52
config = create_config_contents (
53
- package = package ,
54
- version = version ,
55
- python_alt_version = alt_python ,
53
+ { " package" : package ,
54
+ " version" : version ,
55
+ " python_alt_version" : alt_python } ,
56
56
session = betamax_parametrized_session ,
57
57
)
58
58
@@ -72,9 +72,9 @@ def test_automatically_generated_compat_config_is_valid(
72
72
betamax_parametrized_session , package , compat , version
73
73
):
74
74
config = create_config_contents (
75
- package = package ,
76
- version = version ,
77
- compat = compat ,
75
+ { " package" : package ,
76
+ " version" : version ,
77
+ " compat" : compat } ,
78
78
session = betamax_parametrized_session ,
79
79
)
80
80
@@ -89,46 +89,43 @@ def test_config_with_customization_is_valid(betamax_session):
89
89
This also tests the compliance with Fedora Legal data by making
90
90
a request to the remote resource.
91
91
"""
92
- package = "aionotion"
93
92
config = create_config_contents (
94
- package = package ,
95
- version = "2.0.3" ,
96
- automode = True ,
97
- compliant = True ,
93
+ { " package" : "aionotion" ,
94
+ " version" : "2.0.3" ,
95
+ " automode" : True ,
96
+ " compliant" : True } ,
98
97
session = betamax_session ,
99
98
)
100
99
101
- with open (f"tests/test_configs/customized_ { package } .conf" , "rb" ) as config_file :
100
+ with open (f"tests/test_configs/customized_aionotion .conf" , "rb" ) as config_file :
102
101
loaded_contents = tomllib .load (config_file )
103
102
104
103
assert config == loaded_contents
105
104
106
105
107
106
def test_archful_package (betamax_session ):
108
107
"""Generate config for numpy which is archful"""
109
- package = "numpy"
110
108
config = create_config_contents (
111
- package = package ,
112
- version = "1.25.2" ,
113
- automode = True ,
109
+ { " package" : "numpy" ,
110
+ " version" : "1.25.2" ,
111
+ " automode" : True } ,
114
112
session = betamax_session ,
115
113
)
116
114
117
- with open (f"tests/test_configs/default_python-{ package } .conf" , "rb" ) as config_file :
115
+ with open (f"tests/test_configs/default_python-numpy .conf" , "rb" ) as config_file :
118
116
loaded_contents = tomllib .load (config_file )
119
117
120
118
assert config ["archful" ] == loaded_contents ["archful" ]
121
119
assert config == loaded_contents
122
120
123
121
124
122
def test_package_with_extras (betamax_session ):
125
- package = "sphinx"
126
123
config = create_config_contents (
127
- package = package ,
124
+ { " package" : "sphinx" } ,
128
125
session = betamax_session ,
129
126
)
130
127
131
- with open (f"tests/test_configs/customized_python-{ package } .conf" , "rb" ) as config_file :
128
+ with open (f"tests/test_configs/customized_python-sphinx .conf" , "rb" ) as config_file :
132
129
loaded_contents = tomllib .load (config_file )
133
130
134
131
assert config ["extras" ] == loaded_contents ["extras" ]
0 commit comments