├── .cruft.json ├── .github ├── CODEOWNERS ├── actions │ └── python-poetry-env │ │ └── action.yml ├── pull_request_template.md └── workflows │ ├── cookiecutter.yml │ ├── dependencies.yml │ ├── draft_release.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── api_docs.md ├── changelog.md └── index.md ├── mkdocs.yml ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── src └── pytest_split │ ├── __init__.py │ ├── algorithms.py │ ├── cli.py │ ├── ipynb_compatibility.py │ ├── plugin.py │ └── py.typed └── tests ├── __init__.py ├── test_algorithms.py ├── test_cli.py ├── test_ipynb.py └── test_plugin.py /.cruft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/.cruft.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jerry-git 2 | -------------------------------------------------------------------------------- /.github/actions/python-poetry-env/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/.github/actions/python-poetry-env/action.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cookiecutter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/.github/workflows/cookiecutter.yml -------------------------------------------------------------------------------- /.github/workflows/dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/.github/workflows/dependencies.yml -------------------------------------------------------------------------------- /.github/workflows/draft_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/.github/workflows/draft_release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/README.md -------------------------------------------------------------------------------- /docs/api_docs.md: -------------------------------------------------------------------------------- 1 | # API documentation 2 | 3 | :::pytest_split 4 | -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | --8<-- "CHANGELOG.md" 2 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --8<-- "README.md" 2 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pytest_split/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pytest_split/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/src/pytest_split/algorithms.py -------------------------------------------------------------------------------- /src/pytest_split/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/src/pytest_split/cli.py -------------------------------------------------------------------------------- /src/pytest_split/ipynb_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/src/pytest_split/ipynb_compatibility.py -------------------------------------------------------------------------------- /src/pytest_split/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/src/pytest_split/plugin.py -------------------------------------------------------------------------------- /src/pytest_split/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/tests/test_algorithms.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_ipynb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/tests/test_ipynb.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerry-git/pytest-split/HEAD/tests/test_plugin.py --------------------------------------------------------------------------------