Skip to content
This repository was archived by the owner on Sep 14, 2023. It is now read-only.

Commit d2d895f

Browse files
committed
Added devel job that runs with unreleased molecule
Enables testing with latest master code of molecule so we avoid merging changes that may not be compatible with it.
1 parent 8d08233 commit d2d895f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
- name: py37
2626
python: "3.7"
2727
env: TOXENV=py37
28+
- name: devel
29+
python: "3.7"
30+
env: TOXENV=devel
2831
- stage: deploy
2932
name: deploy
3033
if: tag IS present AND type != cron

tox.ini

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
3-
envlist = lint,py27,py35,py36,py37
3+
envlist = lint,py27,py35,py36,py37,devel
44

55
[testenv]
66
deps =
@@ -30,6 +30,11 @@ whitelist_externals =
3030
pytest
3131
pre-commit
3232

33+
[testenv:devel]
34+
commands =
35+
pip install git+https://github.com/ansible/molecule#egg=molecule
36+
{[testenv]commands}
37+
3338
[testenv:lint]
3439
skip_install = true
3540
deps =

0 commit comments

Comments
 (0)