You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-7Lines changed: 2 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,6 @@ This file outlines the process to contribute to the SDK itself. For contributing
8
8
9
9
Please search the [issue tracker](https://github.com/getsentry/sentry-python/issues) before creating a new issue (a problem or an improvement request). Please also ask in our [Sentry Community on Discord](https://discord.com/invite/Ww9hbqr) before submitting a new issue. There are a ton of great people in our Discord community ready to help you!
10
10
11
-
12
11
## Submitting Changes
13
12
14
13
- Fork the `sentry-python` repo and prepare your changes.
@@ -64,7 +63,7 @@ This will make sure that your commits will have the correct coding style.
64
63
```bash
65
64
cd sentry-python
66
65
67
-
pip install -r linter-requirements.txt
66
+
pip install -r devenv-requirements.txt
68
67
69
68
pip install pre-commit
70
69
@@ -75,12 +74,8 @@ That's it. You should be ready to make changes, run tests, and make commits! If
75
74
76
75
## Running Tests
77
76
78
-
To run the tests, first setup your development environment according to the instructions above. Then, install the required packages for running tests with the following command:
79
-
```bash
80
-
pip install -r test-requirements.txt
81
-
```
77
+
You can run all tests with the following command:
82
78
83
-
Once the requirements are installed, you can run all tests with the following command:
0 commit comments