Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ git checkout main
git pull upstream main
```

* Install Heat from the checked out sources with:
* Install Heat in editable mode from the checked out sources with:

```
pip install .[hdf5,netcdf,dev]
pip install -e .[hdf5,netcdf,dev]
```

* The extra `dev` dependency pulls in additional tools to support the enforcement
Expand Down Expand Up @@ -149,7 +149,7 @@ If GitHub indicates that the branch of your PR can no longer be merged automatic
* To measure the test coverage, install [codecov](https://github.com/codecov/codecov-python) and then run:

```
mpirun -np <PROCESSES coverage run --source=heat --parallel-mode -m pytest heat/ && \
mpirun -np <PROCESSES> coverage run --source=heat --parallel-mode -m pytest heat/ && \
coverage combine && \
coverage report && \
coverage xml'
Expand Down