We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae63d4a commit fcc30b7Copy full SHA for fcc30b7
codeflash/cli_cmds/cmd_init.py
@@ -72,7 +72,10 @@ def init_codeflash() -> None:
72
73
if should_modify_pyproject_toml():
74
setup_info: SetupInfo = collect_setup_info()
75
-
+ if Path(setup_info.module_root).resolve() == Path(setup_info.tests_root).resolve():
76
+ logger.warning(
77
+ "It looks like your tests root is the same as your module root. This is not recommended and can lead to unexpected behavior."
78
+ )
79
configure_pyproject_toml(setup_info)
80
81
install_github_app()
0 commit comments