meta: Install aiomarionette in development mode
Poetry does not install local path dependencies in "editable" mode by default. Instead, it builds them and installs them into the venv like any other dependency. This means that changes in the local copy are not picked up.master
parent
78169c06f0
commit
d075a1b1a9
|
@ -5,7 +5,7 @@ description = "Firefox Marionette client for asyncio"
|
||||||
category = "main"
|
category = "main"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = "^3.8"
|
python-versions = "^3.8"
|
||||||
develop = false
|
develop = true
|
||||||
|
|
||||||
[package.source]
|
[package.source]
|
||||||
type = "directory"
|
type = "directory"
|
||||||
|
@ -411,7 +411,7 @@ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "1.1"
|
lock-version = "1.1"
|
||||||
python-versions = "^3.10"
|
python-versions = "^3.10"
|
||||||
content-hash = "49a13b8a06283a719a02d198d95921149e04688af74e89298d1067981549a1d2"
|
content-hash = "e27fe7faf85bdfce0d97bed53d029fd335a0fffa63fa16930f8708535dea7532"
|
||||||
|
|
||||||
[metadata.files]
|
[metadata.files]
|
||||||
aiomarionette = []
|
aiomarionette = []
|
||||||
|
|
|
@ -10,7 +10,7 @@ playwright = "^1.20.1"
|
||||||
fastapi = "^0.75.1"
|
fastapi = "^0.75.1"
|
||||||
uvicorn = "^0.17.6"
|
uvicorn = "^0.17.6"
|
||||||
python-multipart = "^0.0.5"
|
python-multipart = "^0.0.5"
|
||||||
aiomarionette = {path = "../../aiomarionette"}
|
aiomarionette = {path = "../../aiomarionette", develop = true}
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
black = "^22.3.0"
|
black = "^22.3.0"
|
||||||
|
|
Loading…
Reference in New Issue