File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 37
37
38
38
from osgeo import gdal , ogr , osr
39
39
40
- pytestmark = pytest .mark .skipif (
41
- test_cli_utilities .get_gdaltindex_path () is None , reason = "gdaltindex not available"
42
- )
40
+ pytestmark = [
41
+ pytest .mark .skipif (
42
+ test_cli_utilities .get_gdaltindex_path () is None ,
43
+ reason = "gdaltindex not available" ,
44
+ ),
45
+ pytest .mark .random_order (disabled = True ),
46
+ ]
43
47
44
48
45
49
@pytest .fixture ()
Original file line number Diff line number Diff line change 46
46
test_cli_utilities .get_gnmanalyse_path () is None ,
47
47
reason = "gnmanalyse not available" ,
48
48
),
49
+ pytest .mark .random_order (disabled = True ),
49
50
]
50
51
51
52
Original file line number Diff line number Diff line change 19
19
gdal_version = @GDAL_VERSION_NO_DEV_SUFFIX@
20
20
21
21
markers =
22
+ random_order: Indicates whether tests can be run non-sequentially
22
23
require_curl: Skip test(s) if curl support is absent
23
24
require_creation_option: Skip test(s) if required creation option is not available
24
25
require_driver: Skip test(s) if driver isn't present
You can’t perform that action at this time.
0 commit comments