Skip to content

Commit b3f7f32

Browse files
authored
Update README with pytest file retention instructions
Added instructions for retaining test files during pytest.
1 parent 6fab4ec commit b3f7f32

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,9 @@ The regression suite uses `pytest` and creates temporary synthetic datasets, the
7171
```bash
7272
pytest -v tests/test_compliance_checker.py
7373
```
74+
75+
If you want to retain the files generated during testing you can use:
76+
```
77+
pytest -v tests/test_compliance_checker.py --basetemp=/tmp/pytest_tmp
78+
```
79+
The files will then be left in `/tmp/pytest_tmp`. Otherwise, they are cleaned up once tests pass.

0 commit comments

Comments
 (0)