Skip to content

Commit

Permalink
Merge pull request #8 from idealista/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
jmonterrubio authored Oct 31, 2019
2 parents 739ff1e + f160918 commit 00baaf9
Show file tree
Hide file tree
Showing 21 changed files with 866 additions and 43 deletions.
8 changes: 1 addition & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
tests/cache
tests/playbook.retry
tests/__pycache__
.molecule
.cache
.vagrant
tests/roles
Pipfile*
.cache
3 changes: 2 additions & 1 deletion .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
MD013: false
MD024: false
MD041: false
MD041: false
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
- docker
install:
- pip install pipenv
- pipenv install -r test-requirements.txt --python 3.6
- pipenv sync
script:
- pipenv run molecule test

Expand Down
44 changes: 44 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---

yaml-files:
- '*.yaml'
- '*.yml'
- '.yamllint'

rules:
braces: disable
brackets: enable
colons: enable
commas: enable
comments:
level: warning
comments-indentation:
level: warning
document-end: disable
document-start:
level: warning
empty-lines: enable
empty-values: disable
hyphens: enable
indentation: enable
key-duplicates: enable
key-ordering: disable
line-length: enable
new-line-at-end-of-file: enable
new-lines: enable
octal-values: disable
quoted-strings: disable
trailing-spaces: enable
truthy:
level: warning

extends: default

rules:
line-length:
max: 120
level: warning
truthy: disable

ignore: |
test_*.yml
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch

[Full Changelog](https://github.com/idealista/neo4j_role/compare/master...develop)

## [1.1.0] - 2019-10-31

### Added

- *[#6](https://github.com/idealista/neo4j_role/issues/6) Provide plugins installation/configuration* @jmonterrubio
- *Update default version to 3.5.12* @jmonterrubio
- *Default paths can be overriden* @jmonterrubio

## [1.0.1] - 2019-10-15

### Fixed
Expand All @@ -21,5 +29,6 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch
- *First release* @jmonterrubio

[Unreleased]: https://github.com/idealista/neo4j_role/tree/develop
[1.1.0]: https://github.com/idealista/neo4j_role/tree/1.1.0
[1.0.1]: https://github.com/idealista/neo4j_role/tree/1.0.1
[1.0.0]: https://github.com/idealista/neo4j_role/tree/1.0.0
14 changes: 14 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]
ansible = "==2.8.6"
molecule = "==2.22"
docker = "==4.1.0"

[requires]
python_version = "3"
Loading

0 comments on commit 00baaf9

Please sign in to comment.