We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ee7046 commit 3642e59Copy full SHA for 3642e59
eng/tools/azure-sdk-tools/packaging_tools/sdk_generator.py
@@ -5,6 +5,7 @@
5
import json
6
import logging
7
from pathlib import Path
8
+import subprocess
9
from subprocess import check_call
10
import shutil
11
import re
@@ -244,6 +245,10 @@ def main(generate_input, generate_output):
244
245
],
246
cwd=package_path,
247
timeout=600,
248
+ # known issue that higher python version meet install warning with lower pylint.
249
+ # we skip the output here to reduce confusion and will remove it after apiview tool upgrade to higher pylint version.
250
+ stdout=subprocess.DEVNULL,
251
+ stderr=subprocess.DEVNULL,
252
)
253
cmds = ["apistubgen", "--pkg-path", "."]
254
cross_language_mapping_path = Path(package_path, "apiview-properties.json")
0 commit comments