-
I am running into a flaky behavior with running tox with poetry. We have a project director project_dir somewhere on the filesystem, which contains the pyproject.toml & the tox.ini files. RuntimeError: Poetry could not find a pyproject.toml file in C:\Windows or its parents It is unclear to me why it is only looking in C:\Windows and its parents, while poetry is being executed from the project_dir. An interesting detail is that this happens on a couple of workstations, but not all. Some coworkers have no issues at all, while me & at least another one do run into this. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Without configs, files and some sort of reproducible example, there is nothing we can do to help. |
Beta Was this translation helpful? Give feedback.
-
This was most likely caused by older version(s) of poetry being installed at the same time. I cleared my poetry cache, did a pip uninstall & a pip install of poetry, and my issues were gone. |
Beta Was this translation helpful? Give feedback.
This was most likely caused by older version(s) of poetry being installed at the same time. I cleared my poetry cache, did a pip uninstall & a pip install of poetry, and my issues were gone.