Skip to content

Commit

Permalink
Use more accurate name for extra dependencies
Browse files Browse the repository at this point in the history
It's not just tests but also other tools, including documentation.
  • Loading branch information
ageorgou committed Oct 13, 2022
1 parent dcb743b commit d3c6d4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ on this repository.
If you are planning to make changes to the package code,
use the following command to install the package instead:
```bash
pip install -e .[tests]
pip install -e .[dev]
```
This will install some additional libraries and tools for development, and also create an "editable" installation; this means that any changes you make will be applied automatically, without needing to reinstall the package.

### Testing
The package comes with unit tests. To run them, simply run
`pytest` from the top level (this directory). The `pytest` package and command
are installed during the package installation if the `[tests]` extra option
are installed during the package installation if the `[dev]` extra option
is supplied, as above.

### Contributions
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ exclude =
hivpy.data = *.yaml

[options.extras_require]
tests =
dev =
pytest
pytest-mock
flake8
Expand Down

0 comments on commit d3c6d4a

Please sign in to comment.