Skip to content

Commit 9dc4e1d

Browse files
author
Mike Place
authored
Merge pull request cachedout#29 from terminalmage/add-fedora26
Add Fedora 26
2 parents 11821a5 + e116dce commit 9dc4e1d

File tree

4 files changed

+52
-0
lines changed

4 files changed

+52
-0
lines changed

fedora26/Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM fedora:26
2+
3+
COPY base.txt /base.txt
4+
COPY dev_python27.txt /dev_python27.txt
5+
6+
RUN dnf -y install wget gcc git redhat-rpm-config salt-master salt-minion salt-ssh salt-syndic salt-cloud salt-api python-pip python-devel
7+
8+
RUN pip install -r /dev_python27.txt
9+
10+
ENV PYTHONPATH=/testing
11+
ENV PATH=/testing/scripts:/testing/salt/tests:$PATH
12+
13+
VOLUME /testing
14+
CMD bash

fedora26/base.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Jinja2
2+
msgpack-python>0.3
3+
PyYAML
4+
MarkupSafe
5+
requests>=1.0.0
6+
tornado>=4.2.1
7+
# Required by Tornado to handle threads stuff.
8+
futures>=2.0
9+
# from zmq
10+
pycrypto
11+
pyzmq

fedora26/dev_python27.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
-r base.txt
2+
3+
mock
4+
apache-libcloud>=0.14.0
5+
boto>=2.32.1
6+
boto3>=1.2.1
7+
moto>=0.3.6
8+
SaltPyLint>=v2017.3.6
9+
pytest
10+
git+https://github.com/eisensheng/pytest-catchlog.git@develop#egg=Pytest-catchlog
11+
git+https://github.com/saltstack/pytest-salt.git@master#egg=pytest-salt

fedora26/sample.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<testsuite errors="0" failures="0" name="unit.modules.cp_test.CpTestCase-20160910003241" tests="7" time="0.138">
3+
<properties/>
4+
<system-out>
5+
<![CDATA[]]> </system-out>
6+
<system-err>
7+
<![CDATA[]]> </system-err>
8+
<testcase classname="unit.modules.cp_test.CpTestCase" name="test__render_filenames_render_failed" time="0.021"/>
9+
<testcase classname="unit.modules.cp_test.CpTestCase" name="test__render_filenames_success" time="0.021"/>
10+
<testcase classname="unit.modules.cp_test.CpTestCase" name="test__render_filenames_undefined_template" time="0.018"/>
11+
<testcase classname="unit.modules.cp_test.CpTestCase" name="test_get_file_not_found" time="0.018"/>
12+
<testcase classname="unit.modules.cp_test.CpTestCase" name="test_get_file_str_success" time="0.021"/>
13+
<testcase classname="unit.modules.cp_test.CpTestCase" name="test_push_dir_non_absolute_path" time="0.018"/>
14+
<testcase classname="unit.modules.cp_test.CpTestCase" name="test_push_non_absolute_path" time="0.021"/>
15+
</testsuite>
16+

0 commit comments

Comments
 (0)