Skip to content
Open
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
13 changes: 8 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,19 @@ Please read and adhere to our [Code of Conduct](CODE_OF_CONDUCT.md) to ensure a
git clone https://github.com/pyupio/safety.git
```

2. **Set up your environment:**
- Ensure you are using Python 3.11.2.
- Install dependencies:
2. **Set up your environment using Hatch:**
- Ensure you are using Python 3.9 or later.
- Install Hatch and create the development environment:
```bash
pip install -r requirements.txt
pip install hatch
hatch shell
```

### Running Tests
We use pytest for running tests. To run the tests locally:
```pytest```
```bash
hatch run test
```

Ensure all tests pass before submitting your changes.

Expand Down