Skip to content

Commit

Permalink
Update dev install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
einarf committed Oct 13, 2023
1 parent b2b3150 commit a86aea0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,16 @@ We assume the user knows how to handle virtualenvs.
# Install the package in editable mode
$ pip install -e .

# Install test and development requirements
$ pip install -e .[tests]
# Install development requirements
$ pip install -e .[dev]
```

## Running Tests

Tests are set up with `tox` running pytest with coverage and flake8.

```bash
$ pip install -e .[tests]
$ pip install -e .[dev]
$ tox -e py36
$ tox -e py37
$ tox -e py38
Expand All @@ -108,7 +108,7 @@ $ tox -e pep8
## Building Docs

```bash
$ pip install -e .[docs]
$ pip install -e .[dev]
$ sphinx-build -b html docs docs/_build
```

Expand Down

0 comments on commit a86aea0

Please sign in to comment.