11 Commits
0.0.1 ... 0.1.0

Author SHA1 Message Date
f55edfc0e4 Add change log entry
All checks were successful
continuous-integration/drone/push Build is passing
2020-04-27 13:09:08 +02:00
4d195ee238 Merge branch 'master' of github.com:ansible-community/molecule-hetznercloud 2020-04-27 13:08:04 +02:00
b89c10a593 Allow py36 in setuptools requires
All checks were successful
continuous-integration/drone/push Build is passing
2020-04-27 13:07:18 +02:00
2112fc77d4 Add other py versions for testing 2020-04-27 13:07:01 +02:00
f7eb777efb Add other py versions for testing
Some checks failed
continuous-integration/drone/push Build is failing
2020-04-27 13:00:46 +02:00
3528f12b2b Add missing 's'
[ci skip]
2020-04-26 21:07:06 +02:00
e3c20bdb26 Add missing header
All checks were successful
continuous-integration/drone/push Build is passing
2020-04-26 00:57:33 +02:00
6e9ac10f8e Add devel build to get feedback
Some checks reported errors
continuous-integration/drone/push Build was killed
2020-04-26 00:55:21 +02:00
a117a862cf Add funding.yml and remove old files
[ci skip]
2020-04-25 11:41:35 +02:00
b13d902d1f Merge branch 'master' of github.com:ansible-community/molecule-hetznercloud
All checks were successful
continuous-integration/drone/push Build is passing
2020-04-25 08:37:36 +02:00
778147afa0 Fixed linting (#13) 2020-04-24 12:42:01 +01:00
8 changed files with 45 additions and 61 deletions

View File

@ -18,6 +18,26 @@ steps:
- pip install tox==3.14.6
- tox -e packaging
---
kind: pipeline
name: py36
steps:
- name: tox -e py36
image: python:3.6-buster
commands:
- pip install tox==3.14.6
- tox -e py36
---
kind: pipeline
name: py37
steps:
- name: tox -e py37
image: python:3.7-buster
commands:
- pip install tox==3.14.6
- tox -e py37
---
kind: pipeline
name: py38
@ -28,6 +48,17 @@ steps:
- pip install tox==3.14.6
- tox -e py38
---
kind: pipeline
name: devel
steps:
- name: tox -e devel
image: python:3.8-buster
failure: ignore
commands:
- pip install tox==3.14.6
- tox -e devel
---
kind: pipeline
name: integration
@ -45,4 +76,6 @@ steps:
depends_on:
- linters
- packaging
- py36
- py37
- py38

3
.github/funding.yml vendored Normal file
View File

@ -0,0 +1,3 @@
---
github: decentral1se
liberapay: decentral1se

39
.github/labels.yml vendored
View File

@ -1,39 +0,0 @@
---
# Format and labels used aim to match those used by Ansible project
# https://github.com/marketplace/actions/github-labeler
- name: bug
color: "fbca04"
description: "This issue/PR relates to a bug."
- name: deprecated
color: "fef2c0"
description: "This issue/PR relates to a deprecated module."
- name: docs
color: "4071a5"
description: "This issue/PR relates to or includes documentation."
- name: enhancement
color: "ededed"
description: "This issue/PR relates to a feature request."
- name: feature
color: "006b75"
description: "This issue/PR relates to a feature request."
- name: major
color: "c6476b"
description: "Marks an important and likely breaking change."
- name: packaging
color: "4071a5"
description: "Packaging category"
- name: performance
color: "555555"
description: "Relates to product or testing performance."
- name: skip-changelog
color: "eeeeee"
description: "Can be missed from the changelog."
- name: stale
color: "eeeeee"
description: "Not updated in long time, will be closed soon."
- name: wontfix
color: "eeeeee"
description: "This will not be worked on"
- name: test
color: "0e8a16"
description: "This PR relates to tests, QA, CI."

View File

@ -1,19 +0,0 @@
---
categories:
- title: 'Features'
labels:
- 'feature'
- 'enhancement'
- title: 'Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: 'Maintenance'
label: 'chore'
exclude-labels:
- 'skip-changelog'
template: |
## Changes
$CHANGES

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.0] - 2020-04-27
### Added
- py36,37,38 are now supported
## [0.0.1] - 2020-04-25
### Added

View File

@ -63,7 +63,7 @@ Then just run the role.
$ cd myrolename && molecule test
```
To ease initial debugging for getting thing started, also expose the following
To ease initial debugging for getting things started, also expose the following
environment variables.
```bash

View File

@ -44,7 +44,7 @@ keywords =
[options]
use_scm_version = True
python_requires = >=3.8
python_requires = >=3.6
packages = find:
include_package_data = True
zip_safe = False

View File

@ -4,7 +4,7 @@ minversion = 3.14.0
envlist =
linters
packaging
py{38}
py{36,37,38}
devel
skipsdist = True