File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,12 +44,11 @@ jobs:
4444
4545 - name : Check routing.yml validity
4646 run : |
47- python -c "
48- import yaml
49- with open('config/routing.yml') as f :
50- cfg = yaml.safe_load(f)
51- assert 'routes' in cfg, 'routes key missing'
52- assert 'deep_reasoning' in cfg['routes'], 'deep_reasoning route missing'
53- assert 'code_analysis' in cfg['routes'], 'code_analysis route missing'
54- print('routing.yml OK - all required routes present')
55- "
47+ python -c "import yaml
48+ with open('config/routing.yml') as f:
49+ cfg = yaml.safe_load(f)
50+ assert 'routes' in cfg, 'routes key missing'
51+ assert 'deep_reasoning' in cfg['routes'], 'deep_reasoning route missing'
52+ assert 'code_analysis' in cfg['routes'], 'code_analysis route missing'
53+ print('routing.yml OK - all required routes present')
54+ "
You can’t perform that action at this time.
0 commit comments