coala / corobo

A bot to help newcomers onboard OS projects! It's awesome!
MIT License
66 stars 103 forks source link

corobo CI failing due to Pycodestyle Warning W605 #646

Closed sladyn98 closed 5 years ago

sladyn98 commented 5 years ago

In python 3.6, Unknown escapes consisting of \ and an ASCII letter in regular expressions will cause an warning.In the upcoming python versions this would be treated as an error. Owing to it pycodestyle have added this check for future Python versions. Therefore Corobo's travis CI spits out the W606 warning for the following lines: **** PycodestyleBear (W605) [Section: all.autopep8 | Severity: NORMAL] **** ! ! W605 invalid escape sequence '\(' labhub_test.py **** PycodestyleBear (W605) [Section: all.autopep8 | Severity: NORMAL] **** ! ! W605 invalid escape sequence '\(' ban_test.py The link of the build can be found below: https://travis-ci.org/coala/corobo/builds/488152691

abhishalya commented 5 years ago

corobo starts with small c also the issue is about fixing W605 (and not W606)?