We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee636dc commit c7e597fCopy full SHA for c7e597f
tests/test_geophires_x.py
@@ -168,6 +168,12 @@ def get_output_file_for_example(example_file: str):
168
)
169
170
171
+ # Run SBT examples last because they take an inordinately long time (tens of seconds even on a fast machine).
172
+ # This reduces time spent waiting for tests to run if you are iterating on changes that affect non-SBT examples.
173
+ for ef in [_ef for _ef in example_files if _ef.startswith('example_SBT')]:
174
+ example_files.remove(ef)
175
+ example_files.append(ef)
176
+
177
assert len(example_files) > 0 # test integrity check - no files means something is misconfigured
178
regenerate_cmds = []
179
for example_file_path in example_files:
0 commit comments