You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the Travis builds are failing before running the tests at the following points during linting:
/app/scrapers/yahoo.py:82:17
$ flake8 . --count --max-complexity=16 --show-source --statistics
./app/server.py:12:1: F841 local variable 'e' is assigned to but never used
except Exception as e:
^
./app/scrapers/yahoo.py:82:17: W605 invalid escape sequence '\d'
cleanl = re.compile('&#[\d]+(;)')
^
1 F841 local variable 'e' is assigned to but never used
1 W605 invalid escape sequence '\d'
./app/server.py:12:1
$ flake8 . --count --max-complexity=16 --show-source --statistics
./app/server.py:12:1: F841 local variable 'e' is assigned to but never used
except Exception as e:
^
1 F841 local variable 'e' is assigned to but never used
I'm submitting a ...
Currently the Travis builds are failing before running the tests at the following points during linting:
/app/scrapers/yahoo.py:82:17
./app/server.py:12:1
Before running tests:
pytest-cov>=2.6.0
from being loaded.I've already fixed these pre-build issues and Travis is successfully moving on to running the actual tests (which are failing due to other reasons).
The text was updated successfully, but these errors were encountered: