Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: nox instructions for contributing #941

Merged
merged 2 commits into from
Jun 24, 2024
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
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,19 @@ Any contribution is appreciated! You might want to:
2. Install dev dependencies

```sh
pip install -e .[dev]
pip install -e ".[dev]"
```

3. Run the tests
3. Run all formatting, linting and tests

On all Python versions:

```sh
nox
```

Or on a single Python version:
Or only the tests on a single Python version:

```sh
nox -e py36
nox -e tests-3.12
```
Loading