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
Raw Permalink Normal View History

2022-09-11 11:52:41 +02:00
import unittest
"""
This file allows you to launch all the unit tests of the project.
Be careful these tests require internet.
"""
2022-09-11 11:52:41 +02:00
loader = unittest.TestLoader()
runner = unittest.TextTestRunner()
runner.run(loader.discover('./tests/'))