Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into pager-disable-fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
matheuskshn committed Sep 26, 2023
2 parents 4bf783e + e69e507 commit 18e36bc
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true

on: # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy
pull_request:
branches: [main]
workflow_dispatch:
Expand Down
4 changes: 1 addition & 3 deletions bindep.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
# see https://docs.openstack.org/infra/bindep/ for additional information.

gcc-c++ [doc test platform:rpm]
python3-devel [test platform:rpm]
python3 [test platform:rpm]

# ansible-pylibssh
gcc [compile test platform:rpm]
libssh-devel [compile test platform:rpm]
python3-Cython [test platform:fedora-35]
python38-Cython [compile platform:centos-8 platform:rhel-8]
python3-Cython [compile platform:centos-8 platform:rhel-8]
3 changes: 3 additions & 0 deletions changelogs/fragments/bindep_fix.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
trivial:
- Fix 'python3-Cython' dependency in bindep.txt.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ issues: https://github.com/ansible-collections/cisco.asa/issues
tags: [cisco, asa, networking, security]
# NOTE(pabelanger): We create an empty version key to keep ansible-galaxy
# happy. We dynamically inject version info based on git information.
version: 4.0.2-dev
version: 4.0.2-dev
2 changes: 1 addition & 1 deletion plugins/module_utils/network/asa/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def new_dict_to_set(input_dict, temp_list, test_set, count=0):
temp_list.append(k)
for each in v:
if isinstance(each, dict):
if [True for i in each.values() if type(i) == list]:
if [True for i in each.values() if isinstance(i, list)]:
new_dict_to_set(each, temp_list, test_set, count)
else:
new_dict_to_set(each, temp_list, test_set, 0)
Expand Down
1 change: 1 addition & 0 deletions tests/sanity/ignore-2.17.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
plugins/action/asa.py action-plugin-docs # base class for deprecated network platform modules using `connection: local`
2 changes: 1 addition & 1 deletion tests/unit/mock/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
class DictDataLoader(DataLoader):
def __init__(self, file_mapping=None):
file_mapping = {} if file_mapping is None else file_mapping
assert type(file_mapping) == dict
assert isinstance(file_mapping, dict)

super(DictDataLoader, self).__init__()

Expand Down

0 comments on commit 18e36bc

Please sign in to comment.