├── .coveragerc ├── .github ├── dependabot.yml └── workflows │ ├── performance.yml │ ├── pythontests.yml │ └── release-deploy.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .vscode ├── launch.json └── settings.json ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── conf.py │ ├── configuration.rst │ ├── index.rst │ ├── intro.rst │ ├── other_plugins.rst │ └── usage.rst ├── example ├── README ├── configuration │ ├── order_dependencies │ │ ├── __init__.py │ │ ├── test_sort_breaks_dependency.py │ │ └── test_sort_dependency.py │ ├── order_group_scope │ │ ├── index_ordering │ │ │ ├── __init__.py │ │ │ ├── test_module1.py │ │ │ └── test_module2.py │ │ └── relative_ordering │ │ │ ├── __init__.py │ │ │ ├── test_module1.py │ │ │ └── test_module2.py │ ├── order_marker_prefix │ │ ├── __init__.py │ │ └── test_module.py │ ├── order_scope │ │ ├── __init__.py │ │ ├── test_module1.py │ │ └── test_module2.py │ ├── order_scope_level │ │ ├── __init__.py │ │ ├── feature1 │ │ │ ├── __init__.py │ │ │ ├── test_a.py │ │ │ └── test_b.py │ │ └── feature2 │ │ │ ├── __init__.py │ │ │ ├── test_a.py │ │ │ └── test_b.py │ └── sparse_ordering │ │ ├── __init__.py │ │ └── test_sparse_ordering.py ├── introduction │ ├── __init__.py │ ├── test.py │ └── test_quickstart.py └── usage │ ├── multiple_order_markers │ ├── __init__.py │ ├── test_multiple_markers.py │ └── test_parametrized.py │ ├── order_by_numbers │ ├── __init__.py │ ├── test_class_level.py │ ├── test_index.py │ └── test_ordinals.py │ ├── order_modules │ ├── __init__.py │ ├── test_module1.py │ ├── test_module2.py │ └── test_module3.py │ └── order_relative_to_other_tests │ ├── __init__.py │ ├── test_between_classes.py │ ├── test_between_modules │ ├── __init__.py │ ├── test_module_a.py │ ├── test_module_c │ │ ├── __init__.py │ │ └── test_submodule.py │ └── test_modules_b.py │ ├── test_class_level_marker.py │ ├── test_combined.py │ ├── test_parametrized.py │ ├── test_relative.py │ └── test_several_relationships.py ├── old_issues.md ├── perf_tests ├── __init__.py ├── test_dependencies.py ├── test_ordinal.py ├── test_relative.py ├── test_relative_dense.py └── util.py ├── pyproject.toml ├── requirements.txt ├── requirements_dev.txt ├── src └── pytest_order │ ├── __init__.py │ ├── item.py │ ├── plugin.py │ ├── settings.py │ └── sorter.py ├── tests ├── __init__.py ├── conftest.py ├── test_class_marks.py ├── test_dependency.py ├── test_indulgent_ordering.py ├── test_marker_prefix.py ├── test_misc.py ├── test_multiple_ordering.py ├── test_order_group_scope.py ├── test_order_group_scope_dep.py ├── test_order_group_scope_named_dep.py ├── test_order_group_scope_relative.py ├── test_order_scope.py ├── test_order_scope_level.py ├── test_ordering.py ├── test_relative_ordering.py ├── test_sparse_ordinals.py └── test_xdist_handling.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/performance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/.github/workflows/performance.yml -------------------------------------------------------------------------------- /.github/workflows/pythontests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/.github/workflows/pythontests.yml -------------------------------------------------------------------------------- /.github/workflows/release-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/.github/workflows/release-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=2.3.1 2 | furo 3 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/docs/source/configuration.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/docs/source/intro.rst -------------------------------------------------------------------------------- /docs/source/other_plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/docs/source/other_plugins.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/README -------------------------------------------------------------------------------- /example/configuration/order_dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/configuration/order_dependencies/test_sort_breaks_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_dependencies/test_sort_breaks_dependency.py -------------------------------------------------------------------------------- /example/configuration/order_dependencies/test_sort_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_dependencies/test_sort_dependency.py -------------------------------------------------------------------------------- /example/configuration/order_group_scope/index_ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/configuration/order_group_scope/index_ordering/test_module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_group_scope/index_ordering/test_module1.py -------------------------------------------------------------------------------- /example/configuration/order_group_scope/index_ordering/test_module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_group_scope/index_ordering/test_module2.py -------------------------------------------------------------------------------- /example/configuration/order_group_scope/relative_ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/configuration/order_group_scope/relative_ordering/test_module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_group_scope/relative_ordering/test_module1.py -------------------------------------------------------------------------------- /example/configuration/order_group_scope/relative_ordering/test_module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_group_scope/relative_ordering/test_module2.py -------------------------------------------------------------------------------- /example/configuration/order_marker_prefix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/configuration/order_marker_prefix/test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_marker_prefix/test_module.py -------------------------------------------------------------------------------- /example/configuration/order_scope/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/configuration/order_scope/test_module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_scope/test_module1.py -------------------------------------------------------------------------------- /example/configuration/order_scope/test_module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_scope/test_module2.py -------------------------------------------------------------------------------- /example/configuration/order_scope_level/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/configuration/order_scope_level/feature1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/configuration/order_scope_level/feature1/test_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_scope_level/feature1/test_a.py -------------------------------------------------------------------------------- /example/configuration/order_scope_level/feature1/test_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_scope_level/feature1/test_b.py -------------------------------------------------------------------------------- /example/configuration/order_scope_level/feature2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/configuration/order_scope_level/feature2/test_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_scope_level/feature2/test_a.py -------------------------------------------------------------------------------- /example/configuration/order_scope_level/feature2/test_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/order_scope_level/feature2/test_b.py -------------------------------------------------------------------------------- /example/configuration/sparse_ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/configuration/sparse_ordering/test_sparse_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/configuration/sparse_ordering/test_sparse_ordering.py -------------------------------------------------------------------------------- /example/introduction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/introduction/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/introduction/test.py -------------------------------------------------------------------------------- /example/introduction/test_quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/introduction/test_quickstart.py -------------------------------------------------------------------------------- /example/usage/multiple_order_markers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/usage/multiple_order_markers/test_multiple_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/multiple_order_markers/test_multiple_markers.py -------------------------------------------------------------------------------- /example/usage/multiple_order_markers/test_parametrized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/multiple_order_markers/test_parametrized.py -------------------------------------------------------------------------------- /example/usage/order_by_numbers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/usage/order_by_numbers/test_class_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_by_numbers/test_class_level.py -------------------------------------------------------------------------------- /example/usage/order_by_numbers/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_by_numbers/test_index.py -------------------------------------------------------------------------------- /example/usage/order_by_numbers/test_ordinals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_by_numbers/test_ordinals.py -------------------------------------------------------------------------------- /example/usage/order_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_modules/__init__.py -------------------------------------------------------------------------------- /example/usage/order_modules/test_module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_modules/test_module1.py -------------------------------------------------------------------------------- /example/usage/order_modules/test_module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_modules/test_module2.py -------------------------------------------------------------------------------- /example/usage/order_modules/test_module3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_modules/test_module3.py -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_between_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_relative_to_other_tests/test_between_classes.py -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_between_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_between_modules/test_module_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_relative_to_other_tests/test_between_modules/test_module_a.py -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_between_modules/test_module_c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_between_modules/test_module_c/test_submodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_relative_to_other_tests/test_between_modules/test_module_c/test_submodule.py -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_between_modules/test_modules_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_relative_to_other_tests/test_between_modules/test_modules_b.py -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_class_level_marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_relative_to_other_tests/test_class_level_marker.py -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_relative_to_other_tests/test_combined.py -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_parametrized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_relative_to_other_tests/test_parametrized.py -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_relative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_relative_to_other_tests/test_relative.py -------------------------------------------------------------------------------- /example/usage/order_relative_to_other_tests/test_several_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/example/usage/order_relative_to_other_tests/test_several_relationships.py -------------------------------------------------------------------------------- /old_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/old_issues.md -------------------------------------------------------------------------------- /perf_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perf_tests/test_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/perf_tests/test_dependencies.py -------------------------------------------------------------------------------- /perf_tests/test_ordinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/perf_tests/test_ordinal.py -------------------------------------------------------------------------------- /perf_tests/test_relative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/perf_tests/test_relative.py -------------------------------------------------------------------------------- /perf_tests/test_relative_dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/perf_tests/test_relative_dense.py -------------------------------------------------------------------------------- /perf_tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/perf_tests/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytest>=5.0 2 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /src/pytest_order/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.4.dev0" 2 | -------------------------------------------------------------------------------- /src/pytest_order/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/src/pytest_order/item.py -------------------------------------------------------------------------------- /src/pytest_order/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/src/pytest_order/plugin.py -------------------------------------------------------------------------------- /src/pytest_order/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/src/pytest_order/settings.py -------------------------------------------------------------------------------- /src/pytest_order/sorter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/src/pytest_order/sorter.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_class_marks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_class_marks.py -------------------------------------------------------------------------------- /tests/test_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_dependency.py -------------------------------------------------------------------------------- /tests/test_indulgent_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_indulgent_ordering.py -------------------------------------------------------------------------------- /tests/test_marker_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_marker_prefix.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_multiple_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_multiple_ordering.py -------------------------------------------------------------------------------- /tests/test_order_group_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_order_group_scope.py -------------------------------------------------------------------------------- /tests/test_order_group_scope_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_order_group_scope_dep.py -------------------------------------------------------------------------------- /tests/test_order_group_scope_named_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_order_group_scope_named_dep.py -------------------------------------------------------------------------------- /tests/test_order_group_scope_relative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_order_group_scope_relative.py -------------------------------------------------------------------------------- /tests/test_order_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_order_scope.py -------------------------------------------------------------------------------- /tests/test_order_scope_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_order_scope_level.py -------------------------------------------------------------------------------- /tests/test_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_ordering.py -------------------------------------------------------------------------------- /tests/test_relative_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_relative_ordering.py -------------------------------------------------------------------------------- /tests/test_sparse_ordinals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_sparse_ordinals.py -------------------------------------------------------------------------------- /tests/test_xdist_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tests/test_xdist_handling.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-order/HEAD/tox.ini --------------------------------------------------------------------------------