diff options
Diffstat (limited to '.projections.json')
-rw-r--r-- | .projections.json | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/.projections.json b/.projections.json index 7aea6f9..f7e1308 100644 --- a/.projections.json +++ b/.projections.json @@ -1,12 +1,16 @@ { - "dotfiles/*.py": { - "alternate": "tests/test_{}.py", - "type": "source" - }, - "tests/test_*.py": { - "alternate": "dotfiles/{}.py", - "type": "test" - }, - "*.py": {"dispatch": "flake8 {file}"}, - "*": {"make": "pytest -q"} + "dotfiles/*.py": { + "alternate": "tests/test_{}.py", + "type": "source" + }, + "tests/test_*.py": { + "alternate": "dotfiles/{}.py", + "type": "test" + }, + "*.py": { + "dispatch": "flake8 {file}" + }, + "*": { + "make": "pytest -q" + } } |