Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
youtube-dl/tox.ini
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
14 lines (14 sloc)
614 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tox] | |
envlist = py26,py27,py33,py34,py35 | |
[testenv] | |
deps = | |
nose | |
coverage | |
# We need a valid $HOME for test_compat_expanduser | |
passenv = HOME | |
defaultargs = test --exclude test_download.py --exclude test_age_restriction.py | |
--exclude test_subtitles.py --exclude test_write_annotations.py | |
--exclude test_youtube_lists.py --exclude test_iqiyi_sdk_interpreter.py | |
--exclude test_socks.py | |
commands = nosetests --verbose {posargs:{[testenv]defaultargs}} # --with-coverage --cover-package=youtube_dl --cover-html | |
# test.test_download:TestDownload.test_NowVideo |