From 63433aa9e21363474c45b9b278b9cec69fc8bb4d Mon Sep 17 00:00:00 2001 From: "afik.cohen" Date: Thu, 14 Dec 2023 21:58:27 -0800 Subject: [PATCH] fix toml --- pyproject.toml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b923efb..d40f27d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,16 +7,18 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.10" -codeflash = {url = "https://www.dropbox.com/scl/fi/nif03u6oj327bn476h11i/codeflash-0.4.3.post1.dev0-50ba298-py3-none-any.whl?rlkey=uoy9h6wcjtktds84idqjkdmza&dl=1"} +[tool.poetry.dependencies.codeflash] +url = "https://www.dropbox.com/scl/fi/nif03u6oj327bn476h11i/codeflash-0.4.3.post1.dev0-50ba298-py3-none-any.whl?rlkey=uoy9h6wcjtktds84idqjkdmza&dl=1" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.codeflash] -root = "/Users/afik_cohen/repos/tacit/my-best-repo" -test-root = "/Users/afik_cohen/repos/tacit/my-best-repo/tests/pytests/" +root = "." +test-root = "tests" test-framework = "pytest" -ignore-paths = ["tests/"] +ignore-paths = []