Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,8 +10,6 @@ pinned: false
|
|
| 10 |
license: mit
|
| 11 |
short_description: An app to convert doc notes to SOAP
|
| 12 |
---
|
| 13 |
-
|
| 14 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
| 15 |
# 🏥 Scribbled Docs Notes - Medical SOAP Note Generator
|
| 16 |
|
| 17 |
|
|
@@ -201,9 +199,19 @@ We welcome contributions! Please follow these steps:
|
|
| 201 |
```bash
|
| 202 |
# Install development dependencies
|
| 203 |
pip install -r requirements.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 204 |
|
| 205 |
-
# Run tests
|
| 206 |
-
python -m pytest tests/
|
| 207 |
|
| 208 |
# Format code
|
| 209 |
black app.py
|
|
@@ -273,4 +281,4 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
| 273 |
|
| 274 |
**Made with ❤️ for the medical community**
|
| 275 |
|
| 276 |
-
*Empowering healthcare professionals with AI-assisted documentation*
|
|
|
|
| 10 |
license: mit
|
| 11 |
short_description: An app to convert doc notes to SOAP
|
| 12 |
---
|
|
|
|
|
|
|
| 13 |
# 🏥 Scribbled Docs Notes - Medical SOAP Note Generator
|
| 14 |
|
| 15 |
|
|
|
|
| 199 |
```bash
|
| 200 |
# Install development dependencies
|
| 201 |
pip install -r requirements.txt
|
| 202 |
+
pip install -r requirements-test.txt
|
| 203 |
+
|
| 204 |
+
# Run the simple tests first
|
| 205 |
+
python -m pytest tests/test_simple.py -v
|
| 206 |
+
|
| 207 |
+
# Run all real tests
|
| 208 |
+
python -m pytest tests/test_real_functionality.py -v
|
| 209 |
+
|
| 210 |
+
# See what's available vs missing
|
| 211 |
+
python -m pytest tests/test_simple.py::test_optional_dependencies -v -s
|
| 212 |
|
| 213 |
+
# Run all tests with coverage
|
| 214 |
+
python -m pytest tests/ --cov=app -v
|
| 215 |
|
| 216 |
# Format code
|
| 217 |
black app.py
|
|
|
|
| 281 |
|
| 282 |
**Made with ❤️ for the medical community**
|
| 283 |
|
| 284 |
+
*Empowering healthcare professionals with AI-assisted documentation*
|