Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Fix security issue refs #4
* Update version to 1.0.5 * Update to use yaml.safe_load() * Update to tomoh1r
- Loading branch information
Showing
10 changed files
with
55 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,20 @@ | ||
| --- | ||
| language: python | ||
| sudo: false | ||
| cache: | ||
| directories: | ||
| - $HOME/.cache/pip | ||
| python: | ||
| - 2.7 | ||
| env: | ||
| matrix: | ||
| - TOXENV=py27 | ||
| - TOXENV=py27-ansible2 | ||
| - "2.7" | ||
| - "3.3" | ||
| - "3.4" | ||
| - "3.5" | ||
| - "3.6" | ||
| install: | ||
| - pip install tox | ||
| script: tox | ||
| - python -m pip install -U setuptools pip | ||
| - python setup.py setup_test | ||
| script: | ||
| - python -m pytest | ||
| - if [ "$TRAVIS_PYTHON_VERSION" == '2.7' ] ; then python -m pip install -U 'ansible<2.0.0' && python -m pytest ; fi | ||
|
|
||
| # vim:st=2 sts=2 sw=2: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| $ANSIBLE_VAULT;1.1;AES256 | ||
| 31616433623434626463363932323936663066353063393731346536636437633463633137643032 | ||
| 3663656431663830396662646132343735623538346330640a363532326262353732636161633431 | ||
| 61353936346235396464333333653831356638393264343662363362653433353762396663653465 | ||
| 6439366430336336660a363931663030323665633136363362353162333864653933653763656462 | ||
| 31656431653333343834623731393263393865353831333963616165613237376630646665306363 | ||
| 6238373037663462343565643737303136333032386136356438 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,10 @@ | ||
| [metadata] | ||
| description-file = README.rst | ||
|
|
||
| [aliases] | ||
| setup_test = develop easy_install ansible-vault[test] | ||
| release = register clean --all sdist | ||
|
|
||
| [tools:pytest] | ||
| norecursedirs = venv | ||
| testpaths = ansible_vault/test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters