-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sentry-admin): Do not wait for command finish to display output (#…
…3390) Currently sentry-admin.sh script saves the output of the command to a separate variable. This makes the command "freeze" if it requires any input from the user (like sentry-admin.sh restore). The change should provide the output directly to the shell. Also changed contributing.md as it seemed outdated and updated requirements-dev.txt with the missing `cryptography` package. Co-authored-by: Daniil Makhonia <[email protected]>
- Loading branch information
Showing
3 changed files
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
## Testing | ||
|
||
Validate changes to the setup by running the integration test: | ||
### Running Tests with Pytest | ||
|
||
```shell | ||
./integration-test.sh | ||
We use pytest for running tests. To run the tests: | ||
|
||
1) Ensure that you are in the root directory of the project. | ||
2) Run the following command: | ||
```bash | ||
pytest | ||
``` | ||
|
||
This will automatically discover and run all test cases in the project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ pytest-rerunfailures>=11.0 | |
pytest-sentry>=0.1.11 | ||
httpx>=0.25.2 | ||
beautifulsoup4>=4.7.1 | ||
cryptography>=43.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters