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
10 changes: 10 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@ There are several different environments (depending on the black boxes we test).

If you want to run tests in all environments, remove `-e poli-base-py39` and just run `tox`. This might take a while, and several conda envs will be created.

## Testing each environment manually using `pytest`

What `tox` does is essentially running certain `pytest` commands after creating relevant `conda` environments. You can usually run these by hand from the relevant environments by doing something like

```bash
pytest -v -m "unmarked" # for the base env.

pytest -v -m "poli__<relevant-env>" # for whichever environment
```

## Bump the version!

Your last commit in your branch should be a bump version.
Expand Down