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: scrapegraph-py/TESTING.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,9 +39,11 @@ Install test dependencies:
39
39
```bash
40
40
cd scrapegraph-py
41
41
pip install -r requirements-test.txt
42
-
pip install -e .
42
+
pip install -e ".[html]"
43
43
```
44
44
45
+
**Note**: Tests require the `html` extra to be installed because they test HTML validation features. The `[html]` extra includes `beautifulsoup4` which is used for HTML validation in `SmartScraperRequest`.
46
+
45
47
### Basic Test Execution
46
48
47
49
```bash
@@ -255,7 +257,7 @@ The `pytest.ini` file configures:
0 commit comments