-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update version to 1.0.5 * Update to use yaml.safe_load() * Update to tomoh1r
- Loading branch information
Showing
8 changed files
with
44 additions
and
25 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,25 @@ | ||
--- | ||
language: python | ||
sudo: false | ||
cache: | ||
directories: | ||
- $HOME/.cache/pip | ||
python: | ||
- 2.7 | ||
- "2.7" | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
env: | ||
matrix: | ||
- TOXENV=py27 | ||
- TOXENV=py27-ansible2 | ||
- ANSIBLE_VER=1 | ||
- ANSIBLE_VER=2 | ||
install: | ||
- pip install tox | ||
script: tox | ||
- python -m pip install -U setuptools pip | ||
- if [ $ANSIBLE_VER -eq 1 ] ; then python -m pip install -U 'ansible<2.0.0' ; fi | ||
- if [ $ANSIBLE_VER -eq 2 ] ; then python -m pip install -U 'ansible>2.0.0' ; fi | ||
- python setup.py setup_test | ||
script: | ||
- python -m pytest | ||
|
||
# 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 |
---|---|---|
@@ -1,2 +1,11 @@ | ||
[metadata] | ||
description-file = README.rst | ||
|
||
[aliases] | ||
setup_test = develop easy_install ansible-vault[test] | ||
setup_pypi = develop easy_install ansible-vault[pypi] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,19 +32,21 @@ def run_tests(self): | |
|
||
setup( | ||
name='ansible-vault', | ||
version='1.0.4', | ||
version='1.0.5', | ||
author='Tomohiro NAKAMURA', | ||
author_email='[email protected]', | ||
url='https://github.com/jptomo/ansible-vault', | ||
url='https://github.com/tomoh1r/ansible-vault', | ||
description='R/W an ansible-vault yaml file', | ||
long_description=_read('README.rst'), | ||
packages=find_packages(), | ||
install_requires=['ansible'], | ||
tests_require=['pytest', 'testfixtures'], | ||
cmdclass={'test': PyTest}, | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
], | ||
license='GPLv3', | ||
extras_require = { | ||
'test': ['pytest', 'testfixtures'], | ||
} | ||
) |