Skip to content

Add shell completions for molecule inside execution environment #509

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 31 commits into
base: main
Choose a base branch
from
Draft
Changes from 2 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1ab069c
feat: add shell completions for molecule
syaghoubi00 Dec 30, 2024
4fd82ba
Merge branch 'main' into feat-molecule-completions
ssbarnea Jan 8, 2025
42c8cb4
test(completions-molecule): add integration tests for zsh completions
syaghoubi00 Jan 9, 2025
3f0eeab
style: fix linting error and warnings
syaghoubi00 Jan 9, 2025
55ac485
Merge branch 'main' into feat-molecule-completions
ssbarnea Jan 21, 2025
83f7a87
Revert "Bump ansible-compat from 24.10.0 to 25.0.0 in /.config (#514)…
audgirka Jan 21, 2025
4430faa
Remove black and rely on ruff-format alone (#520)
ssbarnea Jan 21, 2025
ffba744
Bump ansible-navigator from 24.12.0 to 25.1.0 in /.config (#518)
dependabot[bot] Jan 21, 2025
ae1a536
Testing maintenance (#519)
ssbarnea Jan 21, 2025
6b7a649
Use uv with tox and pre-commit (#521)
ssbarnea Jan 21, 2025
87a1617
Bump pytest-ansible from 24.12.0 to 25.1.0 in /.config (#523)
dependabot[bot] Jan 21, 2025
fe1f233
Bump tox-ansible from 24.12.0 to 25.1.0 in /.config (#522)
dependabot[bot] Jan 21, 2025
59f20e6
Bump molecule from 24.12.0 to 25.1.0 in /.config (#524)
dependabot[bot] Jan 21, 2025
14fcd4e
Bump ansible-dev-environment from 24.12.0 to 25.1.0 in /.config (#525)
dependabot[bot] Jan 21, 2025
7c03ca0
Silence sonarqube code duplication false positive (#526)
ssbarnea Jan 21, 2025
5f44401
Update dependency testing (#528)
ssbarnea Jan 26, 2025
501b55e
Update dependencies (#529)
ssbarnea Jan 26, 2025
aee9c46
Ensure zsh and oh-my-zsh are installed on both images (#530)
ssbarnea Jan 27, 2025
68dd497
Document future test isolation behavior in all ansible-dev-tools (#527)
ssbarnea Jan 27, 2025
5528392
Minor dependency updates (#531)
ssbarnea Jan 27, 2025
162e236
Bump ansible-compat from 24.10.0 to 25.1.0 in /.config (#532)
dependabot[bot] Jan 27, 2025
cdc1c34
Bump ansible-compat from 25.1.0 to 25.1.1 in /.config (#533)
dependabot[bot] Jan 28, 2025
c42122c
Bump molecule from 25.1.0 to 25.2.0 in /.config (#535)
dependabot[bot] Jan 28, 2025
0d07268
Bump ansible-lint from 25.1.0 to 25.1.1 in /.config (#534)
dependabot[bot] Jan 28, 2025
7ee4352
feat: add shell completions for molecule
syaghoubi00 Dec 30, 2024
35e6162
refactor(pytest): simplify pytest and fix pytest fixture call
syaghoubi00 Feb 3, 2025
ceaeb6e
Merge branch 'main' into feat-molecule-completions
syaghoubi00 Feb 3, 2025
3c0f711
fix: skip test if shell not found
syaghoubi00 Feb 8, 2025
0cdaf28
Merge branch 'main' into feat-molecule-completions
syaghoubi00 Feb 8, 2025
0564026
Merge branch 'main' into feat-molecule-completions
ssbarnea Feb 10, 2025
e50bdf7
Merge branch 'main' of github.com:ansible/ansible-dev-tools into feat…
audgirka Feb 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions final/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ activate-global-python-argcomplete
# Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

# Add completions to zsh
echo eval \"\$\(_MOLECULE_COMPLETE=zsh_source molecule\)\" > ~/.oh-my-zsh/custom/molecule-completions.zsh

# shellcheck disable=SC1091
source "$DIR/setup-image.sh"

Expand Down
Loading