diff options
author | Filippo Valsorda <filippo.valsorda@gmail.com> | 2013-10-12 13:17:11 -0400 |
---|---|---|
committer | Filippo Valsorda <filippo.valsorda@gmail.com> | 2013-10-12 13:17:11 -0400 |
commit | d3f46b9aa5727323182dd845030c9d781e1824fd (patch) | |
tree | de3beb03adfc988d562d6558e298874a526659d0 /test/test_all_urls.py | |
parent | f5e54a1fda6fcc4ef279e54ff6cf63f6eae71bb0 (diff) |
Add support for single-test tox runs
Use a sintax like
tox test.test_download:TestDownload.test_NowVideo
to run the specific test on all the tox environments (Python versions)
Diffstat (limited to 'test/test_all_urls.py')
-rw-r--r-- | test/test_all_urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_all_urls.py b/test/test_all_urls.py index ff1c86efe..b28ad000b 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -8,7 +8,7 @@ import os sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) from youtube_dl.extractor import YoutubeIE, YoutubePlaylistIE, YoutubeChannelIE, JustinTVIE, gen_extractors -from helper import get_testcases +from .helper import get_testcases class TestAllURLsMatching(unittest.TestCase): def setUp(self): |