Replies: 1 comment 1 reply
-
Option A: Do not define a readme in your pyproject.toml if you do not care about it. Option B: Just create an empty readme file in your docker container if you do not want to copy your original readme. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried
lock --check
's replacement,check --lock
. My (paraphrased) Dockerfile withlock --check
is like:pyproject.toml
andpoetry.lock
So that daily development changes to src files do not require a poetry install. However, using
check --lock
means having to:pyproject.toml
,poetry.lock
, andREADME.md
Because it seems
check
intends to "run a single command in CI and get all validation performed", and it turns out "all validation" means failing if I don't copy in my README.md file into the Docker container.I'd prefer not to:
Unless there's some alternative solution, please keep
lock --check
as an "only check lockfile consistency" feature.Beta Was this translation helpful? Give feedback.
All reactions