Update workflows/publish_pypi.yml
[manga-dl.git] / run_tests.py
bloba9539dd6100fcf8820d03a283d8bf76da732e068
1 #!/usr/bin/python3
2 # -*- coding: utf-8 -*-
4 import unittest
5 from os import path
7 from manga_py import fs
8 from tests import *
10 root_path = path.join(path.dirname(path.realpath(__file__)), 'tests')
13 if __name__ == '__main__':
14 fs.make_dirs(root_path + '/temp')
15 unittest.main()