We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eefef2 commit 7a7dfb6Copy full SHA for 7a7dfb6
1 file changed
.github/workflows/ci.yml
@@ -46,9 +46,9 @@ jobs:
46
run: |
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')
+ cfg = yaml.safe_load(f)
+ assert 'routes' in cfg, 'routes key missing'
+ assert 'deep_reasoning' in cfg['routes'], 'deep_reasoning route missing'
+ assert 'code_analysis' in cfg['routes'], 'code_analysis route missing'
+ print('routing.yml OK - all required routes present')
54
"
0 commit comments