mirror of
https://github.com/qurator-spk/modstool.git
synced 2025-06-09 19:59:57 +02:00
17 lines
255 B
Markdown
17 lines
255 B
Markdown
```
|
|
pip install -r requirements-test.txt
|
|
```
|
|
|
|
To run tests:
|
|
```
|
|
pip install -e .
|
|
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
|
|
```
|