mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
add tox configuration file for easy testing
This commit is contained in:
parent
00fcc17aee
commit
79cfb46d42
2 changed files with 6 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -25,3 +25,4 @@ updates_key.pem
|
||||||
*.mp4
|
*.mp4
|
||||||
*.part
|
*.part
|
||||||
test/testdata
|
test/testdata
|
||||||
|
.tox
|
||||||
|
|
5
tox.ini
Normal file
5
tox.ini
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[tox]
|
||||||
|
envlist = py26,py27,py33
|
||||||
|
[testenv]
|
||||||
|
deps = nose
|
||||||
|
commands = nosetests --with-coverage --cover-package=youtube_dl --cover-html --verbose test
|
Loading…
Reference in a new issue