├── .github ├── dependabot.yml └── workflows │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── RELEASING.rst ├── docs ├── pytest-random-order-design.png ├── pytest-random-order-example1.png └── pytest-random-order-example2.png ├── pyproject.toml ├── random_order ├── __init__.py ├── bucket_types.py ├── cache.py ├── config.py ├── plugin.py ├── shuffler.py └── xdist.py ├── setup.py ├── tests ├── conftest.py ├── test_actual_test_runs.py ├── test_cli.py ├── test_doctests.py ├── test_markers.py ├── test_plugin_failure.py ├── test_shuffle.py └── test_xdist.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/RELEASING.rst -------------------------------------------------------------------------------- /docs/pytest-random-order-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/docs/pytest-random-order-design.png -------------------------------------------------------------------------------- /docs/pytest-random-order-example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/docs/pytest-random-order-example1.png -------------------------------------------------------------------------------- /docs/pytest-random-order-example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/docs/pytest-random-order-example2.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/pyproject.toml -------------------------------------------------------------------------------- /random_order/__init__.py: -------------------------------------------------------------------------------- 1 | import random_order.plugin # noqa 2 | -------------------------------------------------------------------------------- /random_order/bucket_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/random_order/bucket_types.py -------------------------------------------------------------------------------- /random_order/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/random_order/cache.py -------------------------------------------------------------------------------- /random_order/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/random_order/config.py -------------------------------------------------------------------------------- /random_order/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/random_order/plugin.py -------------------------------------------------------------------------------- /random_order/shuffler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/random_order/shuffler.py -------------------------------------------------------------------------------- /random_order/xdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/random_order/xdist.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_actual_test_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/tests/test_actual_test_runs.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/tests/test_doctests.py -------------------------------------------------------------------------------- /tests/test_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/tests/test_markers.py -------------------------------------------------------------------------------- /tests/test_plugin_failure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/tests/test_plugin_failure.py -------------------------------------------------------------------------------- /tests/test_shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/tests/test_shuffle.py -------------------------------------------------------------------------------- /tests/test_xdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/tests/test_xdist.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-random-order/HEAD/tox.ini --------------------------------------------------------------------------------