-
Notifications
You must be signed in to change notification settings - Fork 1
/
synth.yaml
49 lines (45 loc) · 838 Bytes
/
synth.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
flows:
default:
nodes:
codegen:
target:
commands: |
codegen/generate_utilities.py
triggers:
- watch: ["codegen/"]
screens:
target:
commands: |
docs/examples/generate-screenshots.sh
triggers:
- code-changes
tests:
target: tests
triggers:
- code-changes
types:
target: types
triggers:
- code-changes
docs:
target: docs
triggers:
- delay: 1
targets:
tests:
commands: |
pytest -vv --cov
types:
commands: |
mypy
docs:
commands: |
mkdocs serve --strict
triggers:
code-changes:
watch:
- counterweight/
- tests/
- docs/examples/
- pyproject.toml
- .coveragerc