You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
238 B
Markdown
17 lines
238 B
Markdown
11 months ago
|
```
|
||
|
pip install -r requirements-test.txt
|
||
|
```
|
||
|
|
||
|
To run tests:
|
||
|
```
|
||
|
pytest
|
||
|
```
|
||
|
|
||
|
To run a test with profiling:
|
||
|
|
||
|
1. Make sure graphviz is installed
|
||
|
2. Run pytest with with profiling enabled:
|
||
|
```
|
||
|
pytest --profile-svg -k test_page_info
|
||
|
```
|