This repository has been archived on 2023-11-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
WebPicDownloader/run_tests.py

11 lines
239 B
Python

import unittest
"""
This file allows you to launch all the unit tests of the project.
Be careful these tests require internet.
"""
loader = unittest.TestLoader()
runner = unittest.TextTestRunner()
runner.run(loader.discover('./tests/'))