remove duplicated content in Contributing.md (#2152)

This commit is contained in:
Jaspreet singh 2023-11-09 22:14:32 +05:30 committed by GitHub
parent dd982c5ace
commit 323f7ce5ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,23 +34,6 @@ cd examples
poetry run reflex init poetry run reflex init
poetry run reflex run poetry run reflex run
``` ```
All the changes you make to the repository will be reflected in your running app.
## 🧪 Testing and QA
Within the 'test' directory of Reflex you can add to a test file already there or create a new test python file if it doesn't fit into the existing layout.
#### What to unit test?
- Any feature or significant change that has been added.
- Any edge cases or potential problem areas.
- Any interactions between different parts of the code.
Now Init/Run
``` bash
poetry run reflex init
poetry run reflex run
```
All the changes you make to the repository will be reflected in your running app. All the changes you make to the repository will be reflected in your running app.
* We have the examples folder in the .gitignore, so your changes in reflex/examples won't be reflected in your commit. * We have the examples folder in the .gitignore, so your changes in reflex/examples won't be reflected in your commit.
@ -61,7 +44,7 @@ Any feature or significant change added should be accompanied with unit tests.
Within the 'test' directory of Reflex you can add to a test file already there or create a new test python file if it doesn't fit into the existing layout. Within the 'test' directory of Reflex you can add to a test file already there or create a new test python file if it doesn't fit into the existing layout.
What to unit test? #### What to unit test?
- Any feature or significant change that has been added. - Any feature or significant change that has been added.
- Any edge cases or potential problem areas. - Any edge cases or potential problem areas.
- Any interactions between different parts of the code. - Any interactions between different parts of the code.