Ronnie Dutta
Ronnie Dutta
Sorry, accidentally deleted 8.0.x!
Possibly there could be `cylc play --force` option to override a block?
This is why I was getting ``` /opt/hostedtoolcache/Python/3.9.9/x64/lib/python3.9/site-packages/coverage/control.py:768: CoverageWarning: No data was collected. (no-data-collected) self._warn("No data was collected.", slug="no-data-collected") ``` (Strangely running the doctests _was_ generating some coverage, even though...
I find both the order and colors confusing here. For a diff the convention is ```diff -before +after ``` so seeing as `expected` is the "before" state and `actual` is...
1 doctest failure
Oops, `tests/f/cylc-lint/01.lint-toml.t ` failing
Just using ``` [cylc-lint] ignore = ['S008'] ``` and having a line longer than the default 130
> It took me a wee while to remember that my section heading was `cylc-lint` and not `cylc_lint` or `cylclint`. What do you think of testing for _any_ of those?...
Everythging seems to be working apart from ignoring `S008`. I suggest adding a test for that too
To add to this list... Nonsensical difference between these two depending on whitespace: ``` >>> list(ParsecValidator._unquoted_list_parse(None, '1,"2",3')) ['1', '2', '3'] >>> list(ParsecValidator._unquoted_list_parse(None, '1, "2", 3')) ['1', '"2"', '3'] ``` Unexpected...