Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/pip/dot-config/dependencies-0f638…
Browse files Browse the repository at this point in the history
…1f73e
  • Loading branch information
alisonlhart authored Sep 6, 2024
2 parents 1e75a05 + 49f3bfd commit 1b36517
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ repos:
- id: tox-ini-fmt

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.6
rev: v0.6.3
hooks:
- id: ruff
args:
- --exit-non-zero-on-fix

- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v8.13.1
rev: v8.13.3
hooks:
- id: cspell
name: Spell check with cspell
Expand All @@ -80,7 +80,7 @@ repos:
pass_filenames: false

- repo: https://github.com/pycqa/pylint.git
rev: v3.2.6
rev: v3.2.7
hooks:
- id: pylint
args:
Expand All @@ -93,7 +93,7 @@ repos:
- tox

- repo: https://github.com/pre-commit/mirrors-mypy.git
rev: v1.11.1
rev: v1.11.2
hooks:
- id: mypy
additional_dependencies:
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ A pip-like install for ansible collections.

By placing collections into the python site-packages directory they are discoverable by ansible as well as python and pytest.

## Communication

- Join the Ansible forum:

- [Get Help](https://forum.ansible.com/c/help/6): get help or help others. Please add appropriate tags if you start new discussions.
- [Social Spaces](https://forum.ansible.com/c/chat/4): gather and interact with fellow enthusiasts.
- [News & Announcements](https://forum.ansible.com/c/news/5): track project-wide announcements including social events.
- [Bullhorn newsletter](https://docs.ansible.com/ansible/devel/community/communication.html#the-bullhorn): used to announce releases and important changes.

For more information about communication, see the [Ansible communication guide](https://docs.ansible.com/ansible/devel/community/communication.html).

## Usage

### Setting up a development environment
Expand Down
11 changes: 11 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

A pip-like install for Ansible collections.

## Communication

- Join the Ansible forum:

- [Get Help](https://forum.ansible.com/c/help/6): get help or help others. Please add appropriate tags if you start new discussions.
- [Social Spaces](https://forum.ansible.com/c/chat/4): gather and interact with fellow enthusiasts.
- [News & Announcements](https://forum.ansible.com/c/news/5): track project-wide announcements including social events.
- [Bullhorn newsletter](https://docs.ansible.com/ansible/devel/community/communication.html#the-bullhorn): used to announce releases and important changes.

For more information about communication, see the [Ansible communication guide](https://docs.ansible.com/ansible/devel/community/communication.html).

## Features

- Promotes an "ephemeral" development approach
Expand Down
6 changes: 3 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ extra:
- icon: simple/matrix
link: https://matrix.to/#/#devtools:ansible.com
name: Matrix
- icon: fontawesome/solid/comments
link: https://github.com/ansible/ansible-dev-environment/discussions
name: Discussions
- icon: fontawesome/brands/discourse
link: https://forum.ansible.com/c/project/7
name: Ansible forum
- icon: fontawesome/brands/github-alt
link: https://github.com/ansible/ansible-dev-environment
name: GitHub
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/test_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def test_editable_not_local(
config=config,
)

def install_core(self: Installer) -> None: # noqa: ARG001
def install_core(self: Installer) -> None:
"""Don't install core.
Args:
Expand Down Expand Up @@ -1195,7 +1195,7 @@ def test_local_collection_without_tar_install(
installer.run()
pre_mtime = os.lstat(config.site_pkg_collections_path / "ansible" / "posix").st_mtime

def install_local_collection(self: Installer, collection: Collection) -> None: # noqa: ARG001
def install_local_collection(self: Installer, collection: Collection) -> None:
"""Do nothing.
Args:
Expand Down

0 comments on commit 1b36517

Please sign in to comment.