I am not sure what YAML loader is used but pyup, but when I sorted all YAML warnings identified by yamllint inside the .pyup.yml I realised that https://pyup.io started to give 500 Internal Server Error instead of loading them.
a) Use of standard boolean values true and false (lowercase) instead of the older syntax which was giving too much freedom (reported as truthy warnings by yamllint)
b) normalized identation.
pyup should not only accept these standard yaml files but should also document use of correct boolean addresses fro YAML files.
I am not sure what YAML loader is used but pyup, but when I sorted all YAML warnings identified by yamllint inside the
.pyup.yml
I realised that https://pyup.io started to give500 Internal Server Error
instead of loading them.Example: https://pyup.io/account/repos/github/ssbarnea/molecule/settings/
The config file can be seen at https://github.com/ssbarnea/molecule/commit/575c588328fc11c4e1e9eac42151605246f7ec70 and mainly is sorting two type of issues.
a) Use of standard boolean values
true
andfalse
(lowercase) instead of the older syntax which was giving too much freedom (reported astruthy
warnings by yamllint)b) normalized identation.
pyup should not only accept these standard yaml files but should also document use of correct boolean addresses fro YAML files.