From 15297085e55b727dc5498352abbb70e038c53c47 Mon Sep 17 00:00:00 2001 From: Jerry Pussinen Date: Wed, 16 Jun 2021 15:28:35 +0300 Subject: [PATCH] Fix support for src project structure --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5912b45..7ab0cbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = ["Jerry Pussinen "] maintainers = [] readme = 'README.md' keywords = ['pytest', 'plugin', 'split', 'tests'] -packages = [{ include = 'src/pytest_split' }] +packages = [{ include = 'pytest_split', from = 'src' }] license = "MIT" classifiers = [ "Development Status :: 4 - Beta", @@ -36,7 +36,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry.plugins.pytest11] -pytest-split = "src.pytest_split.plugin" +pytest-split = "pytest_split.plugin" [tool.black] line-length = 120