mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Don't require requests in hacking/report.py (#45350)
* Don't require requests in hacking/report.py * move ansible import
This commit is contained in:
parent
19acd5d4f7
commit
7a61763fba
1 changed files with 5 additions and 3 deletions
|
@ -5,8 +5,8 @@
|
||||||
from __future__ import (absolute_import, print_function)
|
from __future__ import (absolute_import, print_function)
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
|
import json
|
||||||
import os
|
import os
|
||||||
import requests
|
|
||||||
import sqlite3
|
import sqlite3
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -21,7 +21,9 @@ if ANSIBLE_PATH not in sys.path:
|
||||||
if ANSIBLE_TEST_PATH not in sys.path:
|
if ANSIBLE_TEST_PATH not in sys.path:
|
||||||
sys.path.insert(0, ANSIBLE_TEST_PATH)
|
sys.path.insert(0, ANSIBLE_TEST_PATH)
|
||||||
|
|
||||||
|
from ansible.module_utils.urls import open_url
|
||||||
from ansible.parsing.metadata import extract_metadata
|
from ansible.parsing.metadata import extract_metadata
|
||||||
|
|
||||||
from lib.target import walk_integration_targets
|
from lib.target import walk_integration_targets
|
||||||
|
|
||||||
|
|
||||||
|
@ -139,8 +141,8 @@ def populate_modules():
|
||||||
|
|
||||||
|
|
||||||
def populate_coverage():
|
def populate_coverage():
|
||||||
response = requests.get('https://codecov.io/api/gh/ansible/ansible/tree/devel/?src=extension')
|
response = open_url('https://codecov.io/api/gh/ansible/ansible/tree/devel/?src=extension')
|
||||||
data = response.json()
|
data = json.load(response)
|
||||||
files = data['commit']['report']['files']
|
files = data['commit']['report']['files']
|
||||||
coverage_rows = []
|
coverage_rows = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue