@@ -28,7 +28,9 @@ def test_set_elevation_open_elevation(
2828
2929
3030@patch ("matplotlib.pyplot.show" )
31- def test_era5_atmosphere (mock_show , example_spaceport_env ): # pylint: disable=unused-argument
31+ def test_era5_atmosphere (
32+ mock_show , example_spaceport_env
33+ ): # pylint: disable=unused-argument
3234 """Tests the Reanalysis model with the ERA5 file. It uses an example file
3335 available in the data/weather folder of the RocketPy repository.
3436
@@ -49,7 +51,9 @@ def test_era5_atmosphere(mock_show, example_spaceport_env): # pylint: disable=u
4951
5052
5153@patch ("matplotlib.pyplot.show" )
52- def test_custom_atmosphere (mock_show , example_plain_env ): # pylint: disable=unused-argument
54+ def test_custom_atmosphere (
55+ mock_show , example_plain_env
56+ ): # pylint: disable=unused-argument
5357 """Tests the custom atmosphere model in the environment object.
5458
5559 Parameters
@@ -74,7 +78,9 @@ def test_custom_atmosphere(mock_show, example_plain_env): # pylint: disable=unu
7478
7579
7680@patch ("matplotlib.pyplot.show" )
77- def test_standard_atmosphere (mock_show , example_plain_env ): # pylint: disable=unused-argument
81+ def test_standard_atmosphere (
82+ mock_show , example_plain_env
83+ ): # pylint: disable=unused-argument
7884 """Tests the standard atmosphere model in the environment object.
7985
8086 Parameters
@@ -126,7 +132,9 @@ def test_windy_atmosphere(example_euroc_env, model_name):
126132
127133@pytest .mark .slow
128134@patch ("matplotlib.pyplot.show" )
129- def test_gfs_atmosphere (mock_show , example_spaceport_env ): # pylint: disable=unused-argument
135+ def test_gfs_atmosphere (
136+ mock_show , example_spaceport_env
137+ ): # pylint: disable=unused-argument
130138 """Tests the Forecast model with the GFS file. It does not test the values,
131139 instead the test checks if the method runs without errors.
132140
@@ -143,7 +151,9 @@ def test_gfs_atmosphere(mock_show, example_spaceport_env): # pylint: disable=un
143151
144152@pytest .mark .slow
145153@patch ("matplotlib.pyplot.show" )
146- def test_nam_atmosphere (mock_show , example_spaceport_env ): # pylint: disable=unused-argument
154+ def test_nam_atmosphere (
155+ mock_show , example_spaceport_env
156+ ): # pylint: disable=unused-argument
147157 """Tests the Forecast model with the NAM file.
148158
149159 Parameters
@@ -159,7 +169,9 @@ def test_nam_atmosphere(mock_show, example_spaceport_env): # pylint: disable=un
159169
160170@pytest .mark .slow
161171@patch ("matplotlib.pyplot.show" )
162- def test_rap_atmosphere (mock_show , example_spaceport_env ): # pylint: disable=unused-argument
172+ def test_rap_atmosphere (
173+ mock_show , example_spaceport_env
174+ ): # pylint: disable=unused-argument
163175 today = date .today ()
164176 now = datetime .now (timezone .utc )
165177 example_spaceport_env .set_date ((today .year , today .month , today .day , now .hour ))
@@ -169,7 +181,9 @@ def test_rap_atmosphere(mock_show, example_spaceport_env): # pylint: disable=un
169181
170182@pytest .mark .slow
171183@patch ("matplotlib.pyplot.show" )
172- def test_gefs_atmosphere (mock_show , example_spaceport_env ): # pylint: disable=unused-argument
184+ def test_gefs_atmosphere (
185+ mock_show , example_spaceport_env
186+ ): # pylint: disable=unused-argument
173187 """Tests the Ensemble model with the GEFS file.
174188
175189 Parameters
@@ -185,7 +199,9 @@ def test_gefs_atmosphere(mock_show, example_spaceport_env): # pylint: disable=u
185199
186200@pytest .mark .slow
187201@patch ("matplotlib.pyplot.show" )
188- def test_wyoming_sounding_atmosphere (mock_show , example_plain_env ): # pylint: disable=unused-argument
202+ def test_wyoming_sounding_atmosphere (
203+ mock_show , example_plain_env
204+ ): # pylint: disable=unused-argument
189205 """Asserts whether the Wyoming sounding model in the environment
190206 object behaves as expected with respect to some attributes such
191207 as pressure, barometric_height, wind_velocity and temperature.
@@ -220,7 +236,9 @@ def test_wyoming_sounding_atmosphere(mock_show, example_plain_env): # pylint: d
220236
221237@pytest .mark .slow
222238@patch ("matplotlib.pyplot.show" )
223- def test_hiresw_ensemble_atmosphere (mock_show , example_spaceport_env ): # pylint: disable=unused-argument
239+ def test_hiresw_ensemble_atmosphere (
240+ mock_show , example_spaceport_env
241+ ): # pylint: disable=unused-argument
224242 """Tests the Forecast model with the HIRESW file.
225243
226244 Parameters
@@ -246,7 +264,9 @@ def test_hiresw_ensemble_atmosphere(mock_show, example_spaceport_env): # pylint
246264
247265@pytest .mark .skip (reason = "CMC model is currently not working" )
248266@patch ("matplotlib.pyplot.show" )
249- def test_cmc_atmosphere (mock_show , example_spaceport_env ): # pylint: disable=unused-argument
267+ def test_cmc_atmosphere (
268+ mock_show , example_spaceport_env
269+ ): # pylint: disable=unused-argument
250270 """Tests the Ensemble model with the CMC file.
251271
252272 Parameters
0 commit comments