-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.py
95 lines (72 loc) · 3.23 KB
/
build.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# pyassert
# Copyright 2012 The pyassert team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
pyassert is an assertion library for the Python programming language.
Introduction
------------
Assertions are used in automated tests to verify that a given piece of code behaves as expected. pyassert aims to provide assertions with provide
* **rich functionality**: common assertions should be expressed easily
* **good readability**: assertions should be easy to read and easy to understand to enhance the overall understandability of the test
* **independent of the test framework**: pyassert assertions work with every Python test environment.
How to install it?
``````````````````
pyassert is available via the [Cheeseshop](http://pypi.python.org/pypi/pyassert/) so you can use easy_install or pip:
$ pip install pyassert
Links
`````
* pyassert Github repository including documentation <https://github.com/pyclectic/pyassert>
"""
from pybuilder.core import init, use_plugin, Author
use_plugin("filter_resources")
use_plugin("python.core")
use_plugin("python.unittest")
use_plugin("python.coverage")
use_plugin("python.pychecker")
use_plugin("python.flake8")
use_plugin("python.distutils")
use_plugin("python.install_dependencies")
use_plugin("python.pydev")
default_task = ["analyze", "publish"]
version = "0.4.2"
summary = "Rich assertions library for Python"
description = __doc__
authors = (Author("Alexander Metzner", "[email protected]"),
Author("Michael Gruber", "[email protected]"))
url = "https://github.com/pyclectic/pyassert"
license = "Apache Software License"
@init
def init (project):
project.depends_on("six")
project.build_depends_on("coverage")
project.build_depends_on("mockito")
project.get_property("filter_resources_glob").append("**/pyassert/__init__.py")
project.set_property("flake8_break_build", True)
project.set_property("flake8_ignore", "F403")
project.set_property("pychecker_break_build", False)
project.set_property("pychecker_break_build_threshold", 1)
project.set_property("coverage_threshold_warn", 90)
project.set_property("coverage_break_build", True)
project.get_property("distutils_commands").append("bdist_egg")
project.set_property("distutils_classifiers", [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing"])