Skip to content
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.

EOL Maintenance Updates & Sensu Go Backend Initialization Support #337

Merged
merged 17 commits into from
Mar 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.7.0
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
group: xenial
group: bionic
language: python
python: "2.7"
python: "3.7"
env:
global:
- ANSIBLE_MODULE_UTILS=$TRAVIS_BUILD_DIR/module_utils
Expand All @@ -27,7 +27,7 @@ cache:
install:
- pip install pipenv
- pipenv install --two --dev
- gem install rubocop -v 0.68.1
- gem install rubocop -v 0.80.1
script:
- pipenv run molecule --base-config molecule/shared/base.yml test --scenario-name $SCENARIO --driver-name docker --destroy always

Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ It's **strongly** encouraged that everyone who works on this repository configur
their local development environment with the following procedure:

1. Install `pipenv`: https://docs.pipenv.org/install/
2. Install this repo's development dependencies: `pipenv install --two --dev`
2. Install this repo's development dependencies: `pipenv install --three --dev`
3. Install Docker: https://docs.docker.com/install/
4. Verify that Docker is running: `docker ps`
5. Verify that you can perform local integration testing: `pipenv run molecule test`
5. Verify that you can perform local integration testing: `pipenv run molecule --base-config molecule/shared/base.yml test`

# Contributing

Expand All @@ -27,7 +27,7 @@ process to be followed.
The DCO is an attestation attached to every contribution made by every
developer. In the commit message of the contribution, the developer
simply adds a `Signed-off-by` statement and thereby agrees to the DCO,
which you can find below or at http://developercertificate.org/.
which you can find below or at https://developercertificate.org/.

```
Developer Certificate of Origin
Expand Down
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source 'https://rubygems.org'

ruby '2.7.0'
gem 'rubocop'
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ansible = "*"
docker-py = "*"

[dev-packages]
molecule = "==v3.0.2"
molecule = "==v2.22"

[requires]
python_version = "2.7"
python_version = "3.7"
Loading