mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 01:03:53 +00:00
* Linting of OAuth2 mod. + update tests to detect core package path * Tweak imports in tests + update tox ini to ignore Flake8 E501 error * Tweak tox ini - ignore examples * Remove `f`-string from OAuth2 mod. * More import tweaks in core package + tests * Update flake8 config. in tox ini - set line length limit to 99 chars.
15 lines
205 B
INI
15 lines
205 B
INI
[tox]
|
|
envlist = py27,py34
|
|
[testenv]
|
|
deps=
|
|
requests
|
|
six
|
|
py27: mock
|
|
commands=python -m unittest discover -v tests
|
|
[flake8]
|
|
max-line-length = 99
|
|
exclude=
|
|
.git,
|
|
dist,
|
|
docs,
|
|
examples |