3333 "executables" : [
3434 "crt" ,
3535 "gridgen" ,
36- "gsflow" ,
3736 "mf2000" ,
3837 "mf2005" ,
3938 "mf2005dbl" ,
@@ -140,7 +139,7 @@ def test_select_bindir(bindir, tmpdir):
140139 pytest .skip (f"{ expected_path } is not writable" )
141140 selected = select_bindir (f":{ bindir } " )
142141
143- if system () != ' Darwin' :
142+ if system () != " Darwin" :
144143 assert selected == expected_path
145144 else :
146145 # for some reason sys.prefix can return different python
@@ -162,6 +161,7 @@ def test_script_help():
162161
163162@flaky
164163@requires_github
164+ @pytest .mark .slow
165165def test_script_options (tmpdir , downloads_dir ):
166166 bindir = tmpdir / "bin1"
167167 assert not bindir .exists ()
@@ -213,7 +213,7 @@ def test_script_options(tmpdir, downloads_dir):
213213 pytest .skip (f"GitHub { rate_limit_msg } " )
214214 assert len (stderr ) == returncode == 0
215215 files = [item .stem for item in bindir .iterdir () if item .is_file ()]
216- assert sorted (files ) == ["mfnwt" , "mfnwtdbl" , " mp6" ]
216+ assert sorted (files ) == ["mfnwt" , "mp6" ]
217217
218218 # similar as before, but also specify a ostag
219219 bindir = tmpdir / "bin3"
@@ -234,11 +234,12 @@ def test_script_options(tmpdir, downloads_dir):
234234 pytest .skip (f"GitHub { rate_limit_msg } " )
235235 assert len (stderr ) == returncode == 0
236236 files = [item .name for item in bindir .iterdir () if item .is_file ()]
237- assert sorted (files ) == ["mfnwt.exe" , "mfnwtdbl.exe" ]
237+ assert sorted (files ) == ["mfnwt.exe" ]
238238
239239
240240@flaky
241241@requires_github
242+ @pytest .mark .slow
242243@pytest .mark .parametrize ("repo" , repo_options .keys ())
243244def test_script (tmpdir , repo , downloads_dir ):
244245 bindir = str (tmpdir )
@@ -260,6 +261,7 @@ def test_script(tmpdir, repo, downloads_dir):
260261
261262@flaky
262263@requires_github
264+ @pytest .mark .slow
263265@pytest .mark .parametrize ("repo" , repo_options .keys ())
264266def test_python_api (tmpdir , repo , downloads_dir ):
265267 bindir = str (tmpdir )
0 commit comments