mirror of
https://github.com/TrentSPalmer/hugo_themes_report.git
synced 2024-10-31 22:08:46 -07:00
21 lines
432 B
Markdown
21 lines
432 B
Markdown
To run these tests just type the command
|
|
```python
|
|
python3 -m unittest
|
|
```
|
|
|
|
Or you can just run a specific file of tests
|
|
|
|
```python
|
|
python3 -m unittest test.test_title
|
|
```
|
|
|
|
Or run a specific test class in a specific file
|
|
```python
|
|
python3 -m unittest test.test_title.TestTitle
|
|
```
|
|
|
|
Or run a specific test function in a specific class in a specific file
|
|
```python
|
|
python3 -m unittest test.test_title.TestTitle.test_title_anchor
|
|
```
|