@@ -193,8 +193,8 @@ def test_one_sv():
193193@pytest .mark .parametrize ("use" , (None , {"G" , "R" , "S" }))
194194def test_all_systems (tmp_path , use ):
195195 """
196- ./ReadRinex.py tests/demo.10o -o r2all.nc
197- ./ReadRinex.py tests/demo.10n -o r2all.nc
196+ python -m georinex.read tests/demo.10o -o r2all.nc
197+ python -m georinex.read tests/demo.10n -o r2all.nc
198198 """
199199 pytest .importorskip ("netCDF4" )
200200
@@ -222,7 +222,7 @@ def test_all_systems(tmp_path, use):
222222
223223@pytest .mark .parametrize ("use" , ("G" , ["G" ]))
224224def test_one_system (use ):
225- """./ReadRinex.py tests/demo.10o -u G -o r2G.nc"""
225+ """python -m georinex.read tests/demo.10o -u G -o r2G.nc"""
226226 pytest .importorskip ("netCDF4" )
227227
228228 truth = xarray .open_dataset (R / "r2G.nc" , group = "OBS" )
@@ -233,7 +233,7 @@ def test_one_system(use):
233233
234234
235235def test_multi_system ():
236- """./ReadRinex.py tests/demo.10o -u G R -o r2GR.nc"""
236+ """python -m georinex.read tests/demo.10o -u G R -o r2GR.nc"""
237237 pytest .importorskip ("netCDF4" )
238238
239239 truth = xarray .open_dataset (R / "r2GR.nc" , group = "OBS" )
@@ -245,7 +245,7 @@ def test_multi_system():
245245
246246def test_all_indicators ():
247247 """
248- ./ReadRinex.py tests/demo.10o -useindicators -o r2all_indicators.nc
248+ python -m georinex.read tests/demo.10o -useindicators -o r2all_indicators.nc
249249 """
250250 pytest .importorskip ("netCDF4" )
251251
@@ -258,7 +258,7 @@ def test_all_indicators():
258258
259259def test_meas_indicators ():
260260 """
261- ./ReadRinex.py tests/demo.10o -useindicators -m C1 -o r2_C1_indicators.nc
261+ python -m georinex.read tests/demo.10o -useindicators -m C1 -o r2_C1_indicators.nc
262262 """
263263 pytest .importorskip ("netCDF4" )
264264
0 commit comments