Skip to content

Commit b775a41

Browse files
committed
Adding coverage in python 3.11 to the CI Workflow
1 parent 06bc502 commit b775a41

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-20.04
1515
strategy:
1616
matrix:
17-
python-version: [3.6, 3.7, 3.8]
17+
python-version: [3.7, 3.8, 3.11]
1818

1919
steps:
2020
- uses: actions/checkout@v3

ScoutSuite/providers/base/resources/base.py

-5
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,6 @@ async def _fetch_children(self, resource_parent: object, scope: dict = {}):
8383
"""
8484
children = [(child_class(self.facade, **scope), child_name)
8585
for (child_class, child_name) in self._children]
86-
# Fetch all children concurrently:
87-
# await asyncio.wait(
88-
# {call(child_name, child.fetch_all)
89-
# for (child, child_name) in children}
90-
# )
9186

9287
tasks = []
9388
for (child, child_name) in children:

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
5757
'Programming Language :: Python',
5858
'Programming Language :: Python :: 3',
59-
'Programming Language :: Python :: 3.6',
6059
'Programming Language :: Python :: 3.7',
61-
'Programming Language :: Python :: 3.8'
60+
'Programming Language :: Python :: 3.8',
61+
'Programming Language :: Python :: 3.11',
6262
]
6363
)

0 commit comments

Comments
 (0)