0

I have a section of optional dependencies called test inside my pyproject.toml file:

[project.optional-dependencies]
test = [
    "pylint",
    "pytest",
]

I install these for development and testing, but they aren't real dependencies of my package.

From bash I would include these like

pip install .[test]

but from zsh I get a message like no matches found: .[test]. What am I doing wrong?

Kirk Broadhurst
  • 27,836
  • 16
  • 104
  • 169

0 Answers0