summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2016-10-13 10:39:41 -0500
committerMonty Taylor <mordred@inaugust.com>2016-10-13 10:39:41 -0500
commit644d93f4d632c302cc8cd8ef5c465acfa4e478d5 (patch)
treef1fae88cdafc423137507b1a8c0f16051d6b7c2a
Initial Cookiecutter Commit.
-rw-r--r--.coveragerc6
-rw-r--r--.gitignore58
-rw-r--r--.gitreview4
-rw-r--r--.mailmap3
-rw-r--r--.testr.conf7
-rw-r--r--CONTRIBUTING.rst17
-rw-r--r--HACKING.rst4
-rw-r--r--LICENSE176
-rw-r--r--MANIFEST.in6
-rw-r--r--README.rst19
-rw-r--r--babel.cfg2
-rwxr-xr-xdoc/source/conf.py75
-rw-r--r--doc/source/contributing.rst4
-rw-r--r--doc/source/index.rst25
-rw-r--r--doc/source/installation.rst12
-rw-r--r--doc/source/readme.rst1
-rw-r--r--doc/source/usage.rst7
-rw-r--r--releasenotes/notes/.placeholder0
-rw-r--r--releasenotes/source/_static/.placeholder0
-rw-r--r--releasenotes/source/_templates/.placeholder0
-rw-r--r--releasenotes/source/conf.py275
-rw-r--r--releasenotes/source/index.rst8
-rw-r--r--releasenotes/source/unreleased.rst5
-rw-r--r--requirements.txt5
-rw-r--r--setup.cfg51
-rw-r--r--setup.py29
-rw-r--r--test-requirements.txt17
-rw-r--r--tox.ini40
-rw-r--r--ttrun/__init__.py19
-rw-r--r--ttrun/tests/__init__.py0
-rw-r--r--ttrun/tests/base.py23
-rw-r--r--ttrun/tests/test_ttrun.py28
32 files changed, 926 insertions, 0 deletions
diff --git a/.coveragerc b/.coveragerc
new file mode 100644
index 0000000..118e2a8
--- /dev/null
+++ b/.coveragerc
@@ -0,0 +1,6 @@
1[run]
2branch = True
3source = ttrun
4
5[report]
6ignore_errors = True
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..963e589
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,58 @@
1*.py[cod]
2
3# C extensions
4*.so
5
6# Packages
7*.egg*
8*.egg-info
9dist
10build
11eggs
12parts
13bin
14var
15sdist
16develop-eggs
17.installed.cfg
18lib
19lib64
20
21# Installer logs
22pip-log.txt
23
24# Unit test / coverage reports
25cover/
26.coverage*
27!.coveragerc
28.tox
29nosetests.xml
30.testrepository
31.venv
32
33# Translations
34*.mo
35
36# Mr Developer
37.mr.developer.cfg
38.project
39.pydevproject
40
41# Complexity
42output/*.html
43output/*/index.html
44
45# Sphinx
46doc/build
47
48# pbr generates these
49AUTHORS
50ChangeLog
51
52# Editors
53*~
54.*.swp
55.*sw?
56
57# Files created by releasenotes build
58releasenotes/build \ No newline at end of file
diff --git a/.gitreview b/.gitreview
new file mode 100644
index 0000000..a1bc2ae
--- /dev/null
+++ b/.gitreview
@@ -0,0 +1,4 @@
1[gerrit]
2host=review.openstack.org
3port=29418
4project=openstack/ttrun.git
diff --git a/.mailmap b/.mailmap
new file mode 100644
index 0000000..516ae6f
--- /dev/null
+++ b/.mailmap
@@ -0,0 +1,3 @@
1# Format is:
2# <preferred e-mail> <other e-mail 1>
3# <preferred e-mail> <other e-mail 2>
diff --git a/.testr.conf b/.testr.conf
new file mode 100644
index 0000000..6d83b3c
--- /dev/null
+++ b/.testr.conf
@@ -0,0 +1,7 @@
1[DEFAULT]
2test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \
3 OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \
4 OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-60} \
5 ${PYTHON:-python} -m subunit.run discover -t ./ . $LISTOPT $IDOPTION
6test_id_option=--load-list $IDFILE
7test_list_option=--list
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
new file mode 100644
index 0000000..b13a553
--- /dev/null
+++ b/CONTRIBUTING.rst
@@ -0,0 +1,17 @@
1If you would like to contribute to the development of OpenStack, you must
2follow the steps in this page:
3
4 http://docs.openstack.org/infra/manual/developers.html
5
6If you already have a good understanding of how the system works and your
7OpenStack accounts are set up, you can skip to the development workflow
8section of this documentation to learn how changes to OpenStack should be
9submitted for review via the Gerrit tool:
10
11 http://docs.openstack.org/infra/manual/developers.html#development-workflow
12
13Pull requests submitted through GitHub will be ignored.
14
15Bugs should be filed on Launchpad, not GitHub:
16
17 https://bugs.launchpad.net/ttrun
diff --git a/HACKING.rst b/HACKING.rst
new file mode 100644
index 0000000..4fc42ed
--- /dev/null
+++ b/HACKING.rst
@@ -0,0 +1,4 @@
1ttrun Style Commandments
2===============================================
3
4Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..68c771a
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,176 @@
1
2 Apache License
3 Version 2.0, January 2004
4 http://www.apache.org/licenses/
5
6 TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
8 1. Definitions.
9
10 "License" shall mean the terms and conditions for use, reproduction,
11 and distribution as defined by Sections 1 through 9 of this document.
12
13 "Licensor" shall mean the copyright owner or entity authorized by
14 the copyright owner that is granting the License.
15
16 "Legal Entity" shall mean the union of the acting entity and all
17 other entities that control, are controlled by, or are under common
18 control with that entity. For the purposes of this definition,
19 "control" means (i) the power, direct or indirect, to cause the
20 direction or management of such entity, whether by contract or
21 otherwise, or (ii) ownership of fifty percent (50%) or more of the
22 outstanding shares, or (iii) beneficial ownership of such entity.
23
24 "You" (or "Your") shall mean an individual or Legal Entity
25 exercising permissions granted by this License.
26
27 "Source" form shall mean the preferred form for making modifications,
28 including but not limited to software source code, documentation
29 source, and configuration files.
30
31 "Object" form shall mean any form resulting from mechanical
32 transformation or translation of a Source form, including but
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
35
36 "Work" shall mean the work of authorship, whether in Source or
37 Object form, made available under the License, as indicated by a
38 copyright notice that is included in or attached to the work
39 (an example is provided in the Appendix below).
40
41 "Derivative Works" shall mean any work, whether in Source or Object
42 form, that is based on (or derived from) the Work and for which the
43 editorial revisions, annotations, elaborations, or other modifications
44 represent, as a whole, an original work of authorship. For the purposes
45 of this License, Derivative Works shall not include works that remain
46 separable from, or merely link (or bind by name) to the interfaces of,
47 the Work and Derivative Works thereof.
48
49 "Contribution" shall mean any work of authorship, including
50 the original version of the Work and any modifications or additions
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
54 the copyright owner. For the purposes of this definition, "submitted"
55 means any form of electronic, verbal, or written communication sent
56 to the Licensor or its representatives, including but not limited to
57 communication on electronic mailing lists, source code control systems,
58 and issue tracking systems that are managed by, or on behalf of, the
59 Licensor for the purpose of discussing and improving the Work, but
60 excluding communication that is conspicuously marked or otherwise
61 designated in writing by the copyright owner as "Not a Contribution."
62
63 "Contributor" shall mean Licensor and any individual or Legal Entity
64 on behalf of whom a Contribution has been received by Licensor and
65 subsequently incorporated within the Work.
66
67 2. Grant of Copyright License. Subject to the terms and conditions of
68 this License, each Contributor hereby grants to You a perpetual,
69 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70 copyright license to reproduce, prepare Derivative Works of,
71 publicly display, publicly perform, sublicense, and distribute the
72 Work and such Derivative Works in Source or Object form.
73
74 3. Grant of Patent License. Subject to the terms and conditions of
75 this License, each Contributor hereby grants to You a perpetual,
76 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77 (except as stated in this section) patent license to make, have made,
78 use, offer to sell, sell, import, and otherwise transfer the Work,
79 where such license applies only to those patent claims licensable
80 by such Contributor that are necessarily infringed by their
81 Contribution(s) alone or by combination of their Contribution(s)
82 with the Work to which such Contribution(s) was submitted. If You
83 institute patent litigation against any entity (including a
84 cross-claim or counterclaim in a lawsuit) alleging that the Work
85 or a Contribution incorporated within the Work constitutes direct
86 or contributory patent infringement, then any patent licenses
87 granted to You under this License for that Work shall terminate
88 as of the date such litigation is filed.
89
90 4. Redistribution. You may reproduce and distribute copies of the
91 Work or Derivative Works thereof in any medium, with or without
92 modifications, and in Source or Object form, provided that You
93 meet the following conditions:
94
95 (a) You must give any other recipients of the Work or
96 Derivative Works a copy of this License; and
97
98 (b) You must cause any modified files to carry prominent notices
99 stating that You changed the files; and
100
101 (c) You must retain, in the Source form of any Derivative Works
102 that You distribute, all copyright, patent, trademark, and
103 attribution notices from the Source form of the Work,
104 excluding those notices that do not pertain to any part of
105 the Derivative Works; and
106
107 (d) If the Work includes a "NOTICE" text file as part of its
108 distribution, then any Derivative Works that You distribute must
109 include a readable copy of the attribution notices contained
110 within such NOTICE file, excluding those notices that do not
111 pertain to any part of the Derivative Works, in at least one
112 of the following places: within a NOTICE text file distributed
113 as part of the Derivative Works; within the Source form or
114 documentation, if provided along with the Derivative Works; or,
115 within a display generated by the Derivative Works, if and
116 wherever such third-party notices normally appear. The contents
117 of the NOTICE file are for informational purposes only and
118 do not modify the License. You may add Your own attribution
119 notices within Derivative Works that You distribute, alongside
120 or as an addendum to the NOTICE text from the Work, provided
121 that such additional attribution notices cannot be construed
122 as modifying the License.
123
124 You may add Your own copyright statement to Your modifications and
125 may provide additional or different license terms and conditions
126 for use, reproduction, or distribution of Your modifications, or
127 for any such Derivative Works as a whole, provided Your use,
128 reproduction, and distribution of the Work otherwise complies with
129 the conditions stated in this License.
130
131 5. Submission of Contributions. Unless You explicitly state otherwise,
132 any Contribution intentionally submitted for inclusion in the Work
133 by You to the Licensor shall be under the terms and conditions of
134 this License, without any additional terms or conditions.
135 Notwithstanding the above, nothing herein shall supersede or modify
136 the terms of any separate license agreement you may have executed
137 with Licensor regarding such Contributions.
138
139 6. Trademarks. This License does not grant permission to use the trade
140 names, trademarks, service marks, or product names of the Licensor,
141 except as required for reasonable and customary use in describing the
142 origin of the Work and reproducing the content of the NOTICE file.
143
144 7. Disclaimer of Warranty. Unless required by applicable law or
145 agreed to in writing, Licensor provides the Work (and each
146 Contributor provides its Contributions) on an "AS IS" BASIS,
147 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148 implied, including, without limitation, any warranties or conditions
149 of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150 PARTICULAR PURPOSE. You are solely responsible for determining the
151 appropriateness of using or redistributing the Work and assume any
152 risks associated with Your exercise of permissions under this License.
153
154 8. Limitation of Liability. In no event and under no legal theory,
155 whether in tort (including negligence), contract, or otherwise,
156 unless required by applicable law (such as deliberate and grossly
157 negligent acts) or agreed to in writing, shall any Contributor be
158 liable to You for damages, including any direct, indirect, special,
159 incidental, or consequential damages of any character arising as a
160 result of this License or out of the use or inability to use the
161 Work (including but not limited to damages for loss of goodwill,
162 work stoppage, computer failure or malfunction, or any and all
163 other commercial damages or losses), even if such Contributor
164 has been advised of the possibility of such damages.
165
166 9. Accepting Warranty or Additional Liability. While redistributing
167 the Work or Derivative Works thereof, You may choose to offer,
168 and charge a fee for, acceptance of support, warranty, indemnity,
169 or other liability obligations and/or rights consistent with this
170 License. However, in accepting such obligations, You may act only
171 on Your own behalf and on Your sole responsibility, not on behalf
172 of any other Contributor, and only if You agree to indemnify,
173 defend, and hold each Contributor harmless for any liability
174 incurred by, or claims asserted against, such Contributor by reason
175 of your accepting any such warranty or additional liability.
176
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..c978a52
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,6 @@
1include AUTHORS
2include ChangeLog
3exclude .gitignore
4exclude .gitreview
5
6global-exclude *.pyc
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..960bc5c
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,19 @@
1===============================
2ttrun
3===============================
4
5Simple CLI to run testtools tests
6
7Please fill here a long description which must be at least 3 lines wrapped on
880 cols, so that distribution package maintainers can use it in their packages.
9Note that this is a hard requirement.
10
11* Free software: Apache license
12* Documentation: http://docs.openstack.org/developer/ttrun
13* Source: http://git.openstack.org/cgit/openstack/ttrun
14* Bugs: http://bugs.launchpad.net/ttrun
15
16Features
17--------
18
19* TODO
diff --git a/babel.cfg b/babel.cfg
new file mode 100644
index 0000000..15cd6cb
--- /dev/null
+++ b/babel.cfg
@@ -0,0 +1,2 @@
1[python: **.py]
2
diff --git a/doc/source/conf.py b/doc/source/conf.py
new file mode 100755
index 0000000..4753ad3
--- /dev/null
+++ b/doc/source/conf.py
@@ -0,0 +1,75 @@
1# -*- coding: utf-8 -*-
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
11# implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15import os
16import sys
17
18sys.path.insert(0, os.path.abspath('../..'))
19# -- General configuration ----------------------------------------------------
20
21# Add any Sphinx extension module names here, as strings. They can be
22# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
23extensions = [
24 'sphinx.ext.autodoc',
25 #'sphinx.ext.intersphinx',
26 'oslosphinx'
27]
28
29# autodoc generation is a bit aggressive and a nuisance when doing heavy
30# text edit cycles.
31# execute "export SPHINX_DEBUG=1" in your terminal to disable
32
33# The suffix of source filenames.
34source_suffix = '.rst'
35
36# The master toctree document.
37master_doc = 'index'
38
39# General information about the project.
40project = u'ttrun'
41copyright = u'2016, OpenStack Foundation'
42
43# If true, '()' will be appended to :func: etc. cross-reference text.
44add_function_parentheses = True
45
46# If true, the current module name will be prepended to all description
47# unit titles (such as .. function::).
48add_module_names = True
49
50# The name of the Pygments (syntax highlighting) style to use.
51pygments_style = 'sphinx'
52
53# -- Options for HTML output --------------------------------------------------
54
55# The theme to use for HTML and HTML Help pages. Major themes that come with
56# Sphinx are currently 'default' and 'sphinxdoc'.
57# html_theme_path = ["."]
58# html_theme = '_theme'
59# html_static_path = ['static']
60
61# Output file base name for HTML help builder.
62htmlhelp_basename = '%sdoc' % project
63
64# Grouping the document tree into LaTeX files. List of tuples
65# (source start file, target name, title, author, documentclass
66# [howto/manual]).
67latex_documents = [
68 ('index',
69 '%s.tex' % project,
70 u'%s Documentation' % project,
71 u'OpenStack Foundation', 'manual'),
72]
73
74# Example configuration for intersphinx: refer to the Python standard library.
75#intersphinx_mapping = {'http://docs.python.org/': None}
diff --git a/doc/source/contributing.rst b/doc/source/contributing.rst
new file mode 100644
index 0000000..1728a61
--- /dev/null
+++ b/doc/source/contributing.rst
@@ -0,0 +1,4 @@
1============
2Contributing
3============
4.. include:: ../../CONTRIBUTING.rst
diff --git a/doc/source/index.rst b/doc/source/index.rst
new file mode 100644
index 0000000..0ea7d0f
--- /dev/null
+++ b/doc/source/index.rst
@@ -0,0 +1,25 @@
1.. ttrun documentation master file, created by
2 sphinx-quickstart on Tue Jul 9 22:26:36 2013.
3 You can adapt this file completely to your liking, but it should at least
4 contain the root `toctree` directive.
5
6Welcome to ttrun's documentation!
7========================================================
8
9Contents:
10
11.. toctree::
12 :maxdepth: 2
13
14 readme
15 installation
16 usage
17 contributing
18
19Indices and tables
20==================
21
22* :ref:`genindex`
23* :ref:`modindex`
24* :ref:`search`
25
diff --git a/doc/source/installation.rst b/doc/source/installation.rst
new file mode 100644
index 0000000..1d502e5
--- /dev/null
+++ b/doc/source/installation.rst
@@ -0,0 +1,12 @@
1============
2Installation
3============
4
5At the command line::
6
7 $ pip install ttrun
8
9Or, if you have virtualenvwrapper installed::
10
11 $ mkvirtualenv ttrun
12 $ pip install ttrun
diff --git a/doc/source/readme.rst b/doc/source/readme.rst
new file mode 100644
index 0000000..a6210d3
--- /dev/null
+++ b/doc/source/readme.rst
@@ -0,0 +1 @@
.. include:: ../../README.rst
diff --git a/doc/source/usage.rst b/doc/source/usage.rst
new file mode 100644
index 0000000..b38e015
--- /dev/null
+++ b/doc/source/usage.rst
@@ -0,0 +1,7 @@
1========
2Usage
3========
4
5To use ttrun in a project::
6
7 import ttrun
diff --git a/releasenotes/notes/.placeholder b/releasenotes/notes/.placeholder
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/releasenotes/notes/.placeholder
diff --git a/releasenotes/source/_static/.placeholder b/releasenotes/source/_static/.placeholder
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/releasenotes/source/_static/.placeholder
diff --git a/releasenotes/source/_templates/.placeholder b/releasenotes/source/_templates/.placeholder
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/releasenotes/source/_templates/.placeholder
diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py
new file mode 100644
index 0000000..2ad9acf
--- /dev/null
+++ b/releasenotes/source/conf.py
@@ -0,0 +1,275 @@
1# -*- coding: utf-8 -*-
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
11# implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# Glance Release Notes documentation build configuration file, created by
16# sphinx-quickstart on Tue Nov 3 17:40:50 2015.
17#
18# This file is execfile()d with the current directory set to its
19# containing dir.
20#
21# Note that not all possible configuration values are present in this
22# autogenerated file.
23#
24# All configuration values have a default; values that are commented out
25# serve to show the default.
26
27# If extensions (or modules to document with autodoc) are in another directory,
28# add these directories to sys.path here. If the directory is relative to the
29# documentation root, use os.path.abspath to make it absolute, like shown here.
30# sys.path.insert(0, os.path.abspath('.'))
31
32# -- General configuration ------------------------------------------------
33
34# If your documentation needs a minimal Sphinx version, state it here.
35# needs_sphinx = '1.0'
36
37# Add any Sphinx extension module names here, as strings. They can be
38# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
39# ones.
40extensions = [
41 'oslosphinx',
42 'reno.sphinxext',
43]
44
45# Add any paths that contain templates here, relative to this directory.
46templates_path = ['_templates']
47
48# The suffix of source filenames.
49source_suffix = '.rst'
50
51# The encoding of source files.
52# source_encoding = 'utf-8-sig'
53
54# The master toctree document.
55master_doc = 'index'
56
57# General information about the project.
58project = u'ttrun Release Notes'
59copyright = u'2016, OpenStack Foundation'
60
61# The version info for the project you're documenting, acts as replacement for
62# |version| and |release|, also used in various other places throughout the
63# built documents.
64#
65# The short X.Y version.
66# The full version, including alpha/beta/rc tags.
67release = ''
68# The short X.Y version.
69version = ''
70
71# The language for content autogenerated by Sphinx. Refer to documentation
72# for a list of supported languages.
73# language = None
74
75# There are two options for replacing |today|: either, you set today to some
76# non-false value, then it is used:
77# today = ''
78# Else, today_fmt is used as the format for a strftime call.
79# today_fmt = '%B %d, %Y'
80
81# List of patterns, relative to source directory, that match files and
82# directories to ignore when looking for source files.
83exclude_patterns = []
84
85# The reST default role (used for this markup: `text`) to use for all
86# documents.
87# default_role = None
88
89# If true, '()' will be appended to :func: etc. cross-reference text.
90# add_function_parentheses = True
91
92# If true, the current module name will be prepended to all description
93# unit titles (such as .. function::).
94# add_module_names = True
95
96# If true, sectionauthor and moduleauthor directives will be shown in the
97# output. They are ignored by default.
98# show_authors = False
99
100# The name of the Pygments (syntax highlighting) style to use.
101pygments_style = 'sphinx'
102
103# A list of ignored prefixes for module index sorting.
104# modindex_common_prefix = []
105
106# If true, keep warnings as "system message" paragraphs in the built documents.
107# keep_warnings = False
108
109
110# -- Options for HTML output ----------------------------------------------
111
112# The theme to use for HTML and HTML Help pages. See the documentation for
113# a list of builtin themes.
114html_theme = 'default'
115
116# Theme options are theme-specific and customize the look and feel of a theme
117# further. For a list of options available for each theme, see the
118# documentation.
119# html_theme_options = {}
120
121# Add any paths that contain custom themes here, relative to this directory.
122# html_theme_path = []
123
124# The name for this set of Sphinx documents. If None, it defaults to
125# "<project> v<release> documentation".
126# html_title = None
127
128# A shorter title for the navigation bar. Default is the same as html_title.
129# html_short_title = None
130
131# The name of an image file (relative to this directory) to place at the top
132# of the sidebar.
133# html_logo = None
134
135# The name of an image file (within the static path) to use as favicon of the
136# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
137# pixels large.
138# html_favicon = None
139
140# Add any paths that contain custom static files (such as style sheets) here,
141# relative to this directory. They are copied after the builtin static files,
142# so a file named "default.css" will overwrite the builtin "default.css".
143html_static_path = ['_static']
144
145# Add any extra paths that contain custom files (such as robots.txt or
146# .htaccess) here, relative to this directory. These files are copied
147# directly to the root of the documentation.
148# html_extra_path = []
149
150# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
151# using the given strftime format.
152# html_last_updated_fmt = '%b %d, %Y'
153
154# If true, SmartyPants will be used to convert quotes and dashes to
155# typographically correct entities.
156# html_use_smartypants = True
157
158# Custom sidebar templates, maps document names to template names.
159# html_sidebars = {}
160
161# Additional templates that should be rendered to pages, maps page names to
162# template names.
163# html_additional_pages = {}
164
165# If false, no module index is generated.
166# html_domain_indices = True
167
168# If false, no index is generated.
169# html_use_index = True
170
171# If true, the index is split into individual pages for each letter.
172# html_split_index = False
173
174# If true, links to the reST sources are added to the pages.
175# html_show_sourcelink = True
176
177# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
178# html_show_sphinx = True
179
180# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
181# html_show_copyright = True
182
183# If true, an OpenSearch description file will be output, and all pages will
184# contain a <link> tag referring to it. The value of this option must be the
185# base URL from which the finished HTML is served.
186# html_use_opensearch = ''
187
188# This is the file name suffix for HTML files (e.g. ".xhtml").
189# html_file_suffix = None
190
191# Output file base name for HTML help builder.
192htmlhelp_basename = 'GlanceReleaseNotesdoc'
193
194
195# -- Options for LaTeX output ---------------------------------------------
196
197latex_elements = {
198 # The paper size ('letterpaper' or 'a4paper').
199 # 'papersize': 'letterpaper',
200
201 # The font size ('10pt', '11pt' or '12pt').
202 # 'pointsize': '10pt',
203
204 # Additional stuff for the LaTeX preamble.
205 # 'preamble': '',
206}
207
208# Grouping the document tree into LaTeX files. List of tuples
209# (source start file, target name, title,
210# author, documentclass [howto, manual, or own class]).
211latex_documents = [
212 ('index', 'GlanceReleaseNotes.tex', u'Glance Release Notes Documentation',
213 u'Glance Developers', 'manual'),
214]
215
216# The name of an image file (relative to this directory) to place at the top of
217# the title page.
218# latex_logo = None
219
220# For "manual" documents, if this is true, then toplevel headings are parts,
221# not chapters.
222# latex_use_parts = False
223
224# If true, show page references after internal links.
225# latex_show_pagerefs = False
226
227# If true, show URL addresses after external links.
228# latex_show_urls = False
229
230# Documents to append as an appendix to all manuals.
231# latex_appendices = []
232
233# If false, no module index is generated.
234# latex_domain_indices = True
235
236
237# -- Options for manual page output ---------------------------------------
238
239# One entry per manual page. List of tuples
240# (source start file, name, description, authors, manual section).
241man_pages = [
242 ('index', 'glancereleasenotes', u'Glance Release Notes Documentation',
243 [u'Glance Developers'], 1)
244]
245
246# If true, show URL addresses after external links.
247# man_show_urls = False
248
249
250# -- Options for Texinfo output -------------------------------------------
251
252# Grouping the document tree into Texinfo files. List of tuples
253# (source start file, target name, title, author,
254# dir menu entry, description, category)
255texinfo_documents = [
256 ('index', 'GlanceReleaseNotes', u'Glance Release Notes Documentation',
257 u'Glance Developers', 'GlanceReleaseNotes',
258 'One line description of project.',
259 'Miscellaneous'),
260]
261
262# Documents to append as an appendix to all manuals.
263# texinfo_appendices = []
264
265# If false, no module index is generated.
266# texinfo_domain_indices = True
267
268# How to display URL addresses: 'footnote', 'no', or 'inline'.
269# texinfo_show_urls = 'footnote'
270
271# If true, do not generate a @detailmenu in the "Top" node's menu.
272# texinfo_no_detailmenu = False
273
274# -- Options for Internationalization output ------------------------------
275locale_dirs = ['locale/']
diff --git a/releasenotes/source/index.rst b/releasenotes/source/index.rst
new file mode 100644
index 0000000..10e409e
--- /dev/null
+++ b/releasenotes/source/index.rst
@@ -0,0 +1,8 @@
1============================================
2 ttrun Release Notes
3============================================
4
5.. toctree::
6 :maxdepth: 1
7
8 unreleased
diff --git a/releasenotes/source/unreleased.rst b/releasenotes/source/unreleased.rst
new file mode 100644
index 0000000..cd22aab
--- /dev/null
+++ b/releasenotes/source/unreleased.rst
@@ -0,0 +1,5 @@
1==============================
2 Current Series Release Notes
3==============================
4
5.. release-notes::
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..95d0fe8
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,5 @@
1# The order of packages is significant, because pip processes them in the order
2# of appearance. Changing the order has an impact on the overall integration
3# process, which may cause wedges in the gate later.
4
5pbr>=1.6 # Apache-2.0
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..880b240
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,51 @@
1[metadata]
2name = ttrun
3summary = Simple CLI to run testtools tests
4description-file =
5 README.rst
6author = OpenStack
7author-email = openstack-dev@lists.openstack.org
8home-page = http://www.openstack.org/
9classifier =
10 Environment :: OpenStack
11 Intended Audience :: Information Technology
12 Intended Audience :: System Administrators
13 License :: OSI Approved :: Apache Software License
14 Operating System :: POSIX :: Linux
15 Programming Language :: Python
16 Programming Language :: Python :: 2
17 Programming Language :: Python :: 2.7
18 Programming Language :: Python :: 3
19 Programming Language :: Python :: 3.3
20 Programming Language :: Python :: 3.4
21
22[files]
23packages =
24 ttrun
25
26[build_sphinx]
27source-dir = doc/source
28build-dir = doc/build
29all_files = 1
30
31[upload_sphinx]
32upload-dir = doc/build/html
33
34[compile_catalog]
35directory = ttrun/locale
36domain = ttrun
37
38[update_catalog]
39domain = ttrun
40output_dir = ttrun/locale
41input_file = ttrun/locale/ttrun.pot
42
43[extract_messages]
44keywords = _ gettext ngettext l_ lazy_gettext
45mapping_file = babel.cfg
46output_file = ttrun/locale/ttrun.pot
47
48[build_releasenotes]
49all_files = 1
50build-dir = releasenotes/build
51source-dir = releasenotes/source \ No newline at end of file
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..056c16c
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,29 @@
1# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12# implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
17import setuptools
18
19# In python < 2.7.4, a lazy loading of package `pbr` will break
20# setuptools if some other modules registered functions in `atexit`.
21# solution from: http://bugs.python.org/issue15881#msg170215
22try:
23 import multiprocessing # noqa
24except ImportError:
25 pass
26
27setuptools.setup(
28 setup_requires=['pbr'],
29 pbr=True)
diff --git a/test-requirements.txt b/test-requirements.txt
new file mode 100644
index 0000000..a3fcd81
--- /dev/null
+++ b/test-requirements.txt
@@ -0,0 +1,17 @@
1# The order of packages is significant, because pip processes them in the order
2# of appearance. Changing the order has an impact on the overall integration
3# process, which may cause wedges in the gate later.
4
5hacking<0.12,>=0.11.0 # Apache-2.0
6
7coverage>=3.6 # Apache-2.0
8python-subunit>=0.0.18 # Apache-2.0/BSD
9sphinx!=1.3b1,<1.3,>=1.2.1 # BSD
10oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0
11oslotest>=1.10.0 # Apache-2.0
12testrepository>=0.0.18 # Apache-2.0/BSD
13testscenarios>=0.4 # Apache-2.0/BSD
14testtools>=1.4.0 # MIT
15
16# releasenotes
17reno>=1.8.0 # Apache2
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..c888992
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,40 @@
1[tox]
2minversion = 2.0
3envlist = py34,py27,pypy,pep8
4skipsdist = True
5
6[testenv]
7usedevelop = True
8install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
9setenv =
10 VIRTUAL_ENV={envdir}
11 PYTHONWARNINGS=default::DeprecationWarning
12deps = -r{toxinidir}/test-requirements.txt
13commands = python setup.py test --slowest --testr-args='{posargs}'
14
15[testenv:pep8]
16commands = flake8 {posargs}
17
18[testenv:venv]
19commands = {posargs}
20
21[testenv:cover]
22commands = python setup.py test --coverage --testr-args='{posargs}'
23
24[testenv:docs]
25commands = python setup.py build_sphinx
26
27[testenv:releasenotes]
28commands =
29 sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
30
31[testenv:debug]
32commands = oslo_debug_helper {posargs}
33
34[flake8]
35# E123, E125 skipped as they are invalid PEP-8.
36
37show-source = True
38ignore = E123,E125
39builtins = _
40exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
diff --git a/ttrun/__init__.py b/ttrun/__init__.py
new file mode 100644
index 0000000..8dd2e92
--- /dev/null
+++ b/ttrun/__init__.py
@@ -0,0 +1,19 @@
1# -*- coding: utf-8 -*-
2
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15import pbr.version
16
17
18__version__ = pbr.version.VersionInfo(
19 'ttrun').version_string()
diff --git a/ttrun/tests/__init__.py b/ttrun/tests/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ttrun/tests/__init__.py
diff --git a/ttrun/tests/base.py b/ttrun/tests/base.py
new file mode 100644
index 0000000..1c30cdb
--- /dev/null
+++ b/ttrun/tests/base.py
@@ -0,0 +1,23 @@
1# -*- coding: utf-8 -*-
2
3# Copyright 2010-2011 OpenStack Foundation
4# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
5#
6# Licensed under the Apache License, Version 2.0 (the "License"); you may
7# not use this file except in compliance with the License. You may obtain
8# a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15# License for the specific language governing permissions and limitations
16# under the License.
17
18from oslotest import base
19
20
21class TestCase(base.BaseTestCase):
22
23 """Test case base class for all unit tests."""
diff --git a/ttrun/tests/test_ttrun.py b/ttrun/tests/test_ttrun.py
new file mode 100644
index 0000000..06143b7
--- /dev/null
+++ b/ttrun/tests/test_ttrun.py
@@ -0,0 +1,28 @@
1# -*- coding: utf-8 -*-
2
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15"""
16test_ttrun
17----------------------------------
18
19Tests for `ttrun` module.
20"""
21
22from ttrun.tests import base
23
24
25class TestTtrun(base.TestCase):
26
27 def test_something(self):
28 pass