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
{{ message }}
This repository was archived by the owner on May 21, 2026. It is now read-only.
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:1Before running tests:
pytest-cov>=2.6.0from 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).