blob: 7c29b2f1a70228bd9c0fe6bb3480827bcf1be6ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
import sys
def validate_coverage(target):
result = False
for mod in sys.argv[1:]:
result = target.startswith(mod)
if result:
break
return result
if __name__ == '__main__':
if os.environ.get('PYWIKIBOT2_DIR') is None:
print('Environment variable "KEY_THAT_MIGHT_EXIST" is not set!')
sys.exit(1)
if len(sys.argv) == 1:
print('Usage: %s <module>' % sys.argv[0])
sys.exit(1)
from exporters.html import HtmlExporter
from exporters.mediawiki import MWExporter
from sources.python import PythonReader
for mod in sys.argv[1:]:
reader = PythonReader(None, mod, MWExporter)
reader.build(validate_coverage)
|