This repository has been archived on 2023-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
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/'))