12 Commits
2.5.0 ... 2.5.1

Author SHA1 Message Date
David Mateo
519a783810 Merge pull request #66 from idealista/develop
Release 2.5.1
2021-03-09 12:08:36 +01:00
Alex Blanco
5fc3bcaa2e Merge branch 'master' into develop 2021-03-09 12:07:40 +01:00
David Mateo
dacd85ef41 Update CHANGELOG.md 2021-03-09 12:05:23 +01:00
David Mateo
7e8ec829c9 Merge pull request #65 from idealista/bugs/62
Adding changes to resolve #62
2021-03-09 11:44:35 +01:00
Víctor Suárez Fernández
cc0eb0ce7c Merge branch 'develop' into bugs/62 2021-03-08 10:37:48 +01:00
Alex Blanco
08003a20e3 Merge pull request #64 from idealista/bugs/63
#63 ignore html code in linguist detection
2021-03-08 09:40:24 +01:00
David Mateo
2838871c2b Adding changes to resolve #62
- ignore_errors set to true in to the goss tests execution task
   - Change log update
2021-03-08 09:18:01 +01:00
Alex Blanco
498bb69af5 Merge branch 'develop' into bugs/63 2021-03-05 13:56:07 +01:00
Marcos Pérez García
9e12212122 Merge pull request #61 from idealista/bugs/60
Change state value in "Ensure skeleton log paths"
2021-03-05 13:49:53 +01:00
Alejandro Blanco López
bf38884dcd #63 ignore html code in linguist detection 2021-03-05 13:31:24 +01:00
Marcos Pérez García
2372221f93 update CHANGELOG.md 2021-02-23 16:37:10 +01:00
Marcos Pérez García
a082c79f12 resolve #60 change state value in Ensure skeleton log paths 2021-02-23 13:31:02 +01:00
4 changed files with 11 additions and 1 deletions

View File

@@ -8,6 +8,14 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch
### Fixed
### Removed
## [2.5.1](https://github.com/idealista/cookiecutter-ansible-role/tree/2.5.1)
### [Full Changelog](https://github.com/idealista/cookiecutter-ansible-role/compare/2.5.0...2.5.1)
### Changed
- *[#63](https://github.com/idealista/cookiecutter-ansible-role/issues/63) Ignore html in gitattributes file* @blalop
### Fixed
- *[#62](https://github.com/idealista/cookiecutter-ansible-role/issues/62) molecule verify fails and breaks the run when at least one test fail* @ultraheroe
- *[#60](https://github.com/idealista/cookiecutter-ansible-role/issues/60) [BUG] Wrong state option in "Ensure skeleton log paths" task* @emepege
## [2.5.0](https://github.com/idealista/cookiecutter-ansible-role/tree/2.5.0)
### [Full Changelog](https://github.com/idealista/cookiecutter-ansible-role/compare/2.4.1...2.5.0)
### Added

View File

@@ -45,6 +45,7 @@
command: "{% raw %}{{{% endraw %} goss_dst {% raw %}}}{% endraw %} -g {% raw %}{{{% endraw %} item {% raw %}}}{% endraw %} validate --format {% raw %}{{{% endraw %} goss_format {% raw %}}}{% endraw %}"
register: test_results
with_items: "{% raw %}{{{% endraw %} test_files.stdout_lines {% raw %}}}{% endraw %}"
ignore_errors: true
- name: Display details about the Goss results
debug:

View File

@@ -38,7 +38,7 @@
owner: "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_user {% raw %}}}{% endraw %}"
group: "{% raw %}{{{% endraw %} {{ cookiecutter.app_name }}_group {% raw %}}}{% endraw %}"
{% endif %}
state: file
state: directory
when: {{ cookiecutter.app_name }}_log_file is defined
tags:
- {{ cookiecutter.app_name }}_install

View File

@@ -1,2 +1,3 @@
*.yml linguist-detectable=true
*.yaml linguist-detectable=true
*.html linguist-detectable=false