Skip to content

Commit 683f455

Browse files
authored
Merge pull request #406 from netmanagers/master
Update the testing matrix (5 distros, 2 python versions, 3 salt versions)
2 parents 764d9ee + 4231029 commit 683f455

File tree

20 files changed

+469
-115
lines changed

20 files changed

+469
-115
lines changed

.gitignore

Lines changed: 103 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,104 @@
1-
.vagrant/
2-
.idea/
3-
top.sls
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a packager
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
.hypothesis/
48+
.kitchen
49+
.kitchen.local.yml
50+
kitchen.local.yml
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
local_settings.py
59+
60+
# Flask stuff:
61+
instance/
62+
.webassets-cache
63+
64+
# Scrapy stuff:
65+
.scrapy
66+
67+
# Sphinx documentation
68+
docs/_build/
69+
70+
# PyBuilder
71+
target/
72+
73+
# Jupyter Notebook
74+
.ipynb_checkpoints
75+
76+
# pyenv
77+
.python-version
78+
79+
# celery beat schedule file
80+
celerybeat-schedule
81+
82+
# SageMath parsed files
83+
*.sage.py
84+
85+
# dotenv
486
.env
87+
88+
# virtualenv
89+
.venv
90+
venv/
91+
ENV/
92+
93+
# Spyder project settings
94+
.spyderproject
95+
.spyproject
96+
97+
# Rope project settings
98+
.ropeproject
99+
100+
# mkdocs documentation
101+
/site
102+
103+
# mypy
104+
.mypy_cache/

.kitchen.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.

.travis.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,20 @@ before_install:
1010

1111
env:
1212
matrix:
13-
- INSTANCE: salt-debian-9
14-
- INSTANCE: salt-ubuntu-1804
15-
- INSTANCE: salt-centos-7
13+
- INSTANCE: v2019-2-py3-debian-9
14+
- INSTANCE: v2019-2-py3-ubuntu-1804
15+
- INSTANCE: v2019-2-py3-centos-7
16+
- INSTANCE: v2019-2-py2-fedora-29
17+
18+
- INSTANCE: v2018-3-py2-debian-8
19+
- INSTANCE: v2018-3-py2-ubuntu-1604
20+
- INSTANCE: v2018-3-py2-bootstrap-centos-6
21+
- INSTANCE: v2018-3-py2-forced-version-fedora-28
22+
- INSTANCE: v2018-3-py2-opensuse-423
23+
24+
- INSTANCE: v2017-7-py2-debian-8
25+
- INSTANCE: v2017-7-py2-ubuntu-1604
26+
- INSTANCE: v2017-7-py2-bootstrap-centos-6
1627

1728
script:
1829
- bundle exec kitchen verify ${INSTANCE}
19-

Gemfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
source "https://rubygems.org"
22

3-
gem "test-kitchen", '>=1.23.2'
4-
gem "kitchen-docker"
5-
gem "kitchen-salt", ">=0.2.5"
6-
gem "kitchen-inspec"
3+
gem 'kitchen-docker', '>= 2.9'
4+
gem 'kitchen-salt', '>= 0.6.0'
5+
gem 'kitchen-inspec', '>= 1.1'
76

0 commit comments

Comments
 (0)