Ceridwen
4405dd0ffe
Escape both bytes and unicode strings for "ids" in Metafunc.parametrize
2016-03-22 01:31:48 -04:00
Bruno Oliveira
ceacc12b52
Merge pull request #1454 from tareqalayan/add-global-properties-node
...
junitxml: add properties node in testsuite level
2016-03-16 18:21:51 -03:00
Tareq Alayan
fa6acdcfd4
junitxml: add properties node in testsuite level
...
The commit allow users to add a properties node in testsuite level see
example below:
<testsuite errors="0" failures="0" name="pytest" skips="1" tests="1"
time="11.824">
<properties>
<property name="ARCH" value="PPC"/>
<property name="OS" value="RHEL 7.2"/>
<property name="TestPlanURL" value="https://url .."/>
<property name="Automated" value="True"/>
</properties>
<testcase classname="git.....>
</testcase>
</testsuite>
The current situation is that properties node can be added to every
testcase node. However, sometimes we need some global properties that
applies to all testcases and give better description for the testsuite
itself.
2016-03-16 13:24:33 +02:00
Ronny Pfannschmidt
5fd82078ad
Merge pull request #1441 from kalekundert/features
...
Add a convenience function for floating-point comparisons
2016-03-15 07:45:07 +01:00
Kale Kundert
5ceee08590
Fix CHANGELOG merge conflicts.
2016-03-14 11:55:50 -07:00
Kale Kundert
0dcc862a56
Fix some typos in the documentation.
2016-03-14 11:38:00 -07:00
Kale Kundert
9e7206a1cf
Fix a few stylistic issues.
2016-03-14 11:29:45 -07:00
Ronny Pfannschmidt
0cacdef6c5
Merge pull request #1444 from novas0x2a/fixture-custom-name
...
Allow custom fixture names for fixtures
2016-03-14 14:08:02 +01:00
Kale Kundert
861265411f
Add "thanks" line to the CHANGELOG.
2016-03-12 22:15:19 -08:00
Kale Kundert
916c0a8b36
Fix Decimal() and __ne__() errors.
2016-03-11 16:29:18 -08:00
Kale Kundert
078448008c
Discuss alternative float comparison algorithms.
2016-03-11 15:59:48 -08:00
Kale Kundert
42a7e0488d
Properly handle inf, nan, and built-in numeric types.
...
This commit also:
- Dramatically increases the number of unit tests , mostly by borrowing
from the standard library's unit tests for math.isclose().
- Refactors approx() into two classes, one of which handles comparing
individual numbers (ApproxNonIterable) and another which uses the
first to compare individual numbers or sequences of numbers.
2016-03-11 08:49:26 -08:00
Mike Lundy
9577120592
Allow custom fixture names for fixtures
...
When defining a fixture in the same module as where it is used, the
function argument shadows the fixture name, which a) annoys pylint and
b) can lead to bugs where you forget to request a fixture into a test
method.
This allows one to define fixtures with a different name than the name
of the function, bypassing that problem.
2016-03-09 14:58:54 -08:00
Kale Kundert
7d155bd3cf
Fix sys.version_info errors.
2016-03-08 10:12:31 -08:00
Kale Kundert
6a902924f8
Fix trailing whitespace errors.
2016-03-07 19:56:23 -08:00
Kale Kundert
c9c73b8d8e
Fix zero-length field name error in python2.6
2016-03-07 19:54:43 -08:00
Kale Kundert
4d0f066db7
Add approx() to the CHANGELOG.
2016-03-07 18:29:22 -08:00
Kale Kundert
5dab0954a0
Add approx() to the Sphinx docs.
2016-03-07 18:14:49 -08:00
Kale Kundert
b8a8382c2c
Reduce the default absolute error threshold to 1e-12.
2016-03-07 16:43:53 -08:00
Kale Kundert
bf97d5b817
Use the plus/minus unicode symbol in the repr string.
...
This was a challenge because it had to work in python2 and python3,
which have almost opposite unicode models, and I couldn't use the six
library. I'm also not sure the solution I found would work in python3
before python3.3, because I use the u'' string prefix which I think was
initially not part of python3.
2016-03-07 16:40:41 -08:00
Kale Kundert
dd28e28b34
Make a few stylistic improvements.
2016-03-07 10:10:54 -08:00
Kale Kundert
6f5e1e386a
Add a convenient and correct way to compare floats.
2016-03-07 10:10:54 -08:00
Bruno Oliveira
c2b9196a7c
Merge remote-tracking branch 'upstream/master' into features
2016-03-02 23:41:56 -03:00
Bruno Oliveira
4a76b2e9b6
Merge branch 'doctest_namespace_inject' into features
2016-03-02 23:38:51 -03:00
Bruno Oliveira
28937a5cd9
Add versionadded directive to doctest_namespace section
2016-03-02 23:37:51 -03:00
Bruno Oliveira
2e02a1c370
Give proper credit for PR #1428
2016-03-02 23:30:42 -03:00
Bruno Oliveira
055f1dc9ea
Merge pull request #1430 from vovanbo/patch-1
...
Reformat versions and header levels in CHANGELOG file
2016-03-02 16:23:55 -03:00
Vladimir Bolshakov
0cbd58e16a
Reformat versions and header levels in CHANGELOG file
2016-03-02 22:07:30 +03:00
Bruno Oliveira
b7b863b7bf
Merge pull request #1429 from Zearin/patch-1
...
Minor README tweaks (markup, phrasing)
2016-03-02 15:37:12 -03:00
Zearin
4bcc06362d
Minor README tweaks (markup, phrasing)
2016-03-02 11:59:04 -05:00
Matt Williams
6dd2ff5332
Correct indentation in documentation
2016-03-02 13:02:15 +00:00
Matt Williams
891e029518
Add a new doctest_namespace fixture
...
This fixture can be used to inject names into the namespace in which
your doctests run.
2016-03-02 12:43:57 +00:00
Bruno Oliveira
316e39872a
Add 2.9.1.dev1 to CHANGELOG
2016-03-01 18:55:53 -03:00
Bruno Oliveira
5a2500800d
Add 2.10.0.dev1 to CHANGELOG
2016-03-01 18:54:08 -03:00
Bruno Oliveira
c8c5a416ef
Bump version to 2.10.0.dev1
2016-03-01 18:48:13 -03:00
Bruno Oliveira
81af1c024a
Bump version to 2.9.1.dev1
2016-03-01 18:46:17 -03:00
Bruno Oliveira
e656dbb602
Merge branch 'release-290'
2016-03-01 18:45:33 -03:00
Floris Bruynooghe
63b69326b8
Add company name to flub in sprint attendees
2016-03-01 10:17:31 +00:00
nicoddemus
19d05814d2
Fix reference to _CallOutcome in docs
2016-02-29 17:09:31 -05:00
nicoddemus
7d2b65813e
Fix typo in CHANGELOG
2016-02-29 16:48:28 -05:00
nicoddemus
f82c03833f
Regendocs
2016-02-29 15:52:56 -05:00
nicoddemus
486421fca2
Release announcement for 2.9.0
2016-02-29 15:47:23 -05:00
nicoddemus
2d7cfcd686
Finalize CHANGELOG
2016-02-29 15:42:15 -05:00
nicoddemus
623e786524
Bump version to 2.9.0
2016-02-29 15:39:00 -05:00
Bruno Oliveira
5c09b33150
Merge pull request #1423 from lukas-bednar/junit_properties
...
junit: allow multiple properties with same name
2016-02-29 15:35:03 -03:00
Lukas Bednar
7e758a9dc6
junit: allow multiple properties with same name
...
It might happen that test can be affected by two or more bugs.
I need to be able to track them all.
2016-02-29 16:00:26 +01:00
Bruno Oliveira
3445bdaca2
Merge pull request #1418 from hackebrot/update-sprint-info
...
Add company name sprint doc
2016-02-27 19:48:36 -03:00
Raphael Pierzina
89151b8c63
Add company name to @hackebrot in sprint attendees
2016-02-27 22:15:07 +00:00
Bruno Oliveira
4194ddd5b4
Merge pull request #1417 from hackebrot/fix-docs-on-traceback-styles
...
Fix docs on traceback styles
2016-02-27 18:28:57 -03:00
Raphael Pierzina
ab90043adc
Update changelog with traceback style docs fix
2016-02-27 21:07:13 +00:00