Back slashes need to be escaped in ITEM args, even in Windows paths.
(path)
| 9 | |
| 10 | |
| 11 | def patharg(path): |
| 12 | """ |
| 13 | Back slashes need to be escaped in ITEM args, |
| 14 | even in Windows paths. |
| 15 | |
| 16 | """ |
| 17 | return str(path).replace('\\', '\\\\\\') |
| 18 | |
| 19 | |
| 20 | FIXTURES_ROOT = Path(__file__).parent |