File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,13 @@ Can be installed via `pip`: `pip install codeflare-sdk`
2323
2424We recommend using Python 3.9 for development.
2525Install dependencies: ` poetry install `
26- This will install all requirements as specified in the poetry.lock file.
26+ This will install standard requirements as specified in the poetry.lock file. Test and docs dependencies are optional.
27+
28+ To include test dependencies run: ` poetry install --with test `
29+
30+ To include docs dependencies run: ` poetry instal --with docs `
31+
32+ To include test and docs dependencies run: ` poetry install --with test,docs `
2733
2834If you require a requirements.txt file you can run:
2935
Original file line number Diff line number Diff line change @@ -36,6 +36,9 @@ optional = true
3636[tool .poetry .group .docs .dependencies ]
3737pdoc3 = " 0.10.0"
3838
39+ [tool .poetry .group .test ]
40+ optional = true
41+
3942[tool .poetry .group .test .dependencies ]
4043pytest = " 7.4.0"
4144coverage = " 7.2.7"
You can’t perform that action at this time.
0 commit comments