summaryrefslogtreecommitdiff
path: root/testing
AgeCommit message (Collapse)Author
2018-05-23fix line endingsRonny Pfannschmidt
2018-05-23run pyupgradeRonny Pfannschmidt
2018-05-21Merge pull request #3459 from RonnyPfannschmidt/mark-iter-name-filterBruno Oliveira
introduce name filtering for marker iteration again
2018-05-18Merge remote-tracking branch 'upstream/master' into merge-master-into-featuresBruno Oliveira
2018-05-16Increase hypothesis deadlineBruno Oliveira
The value is pretty close to the new default that will come out in future hypothesis versions, which is generating a deprecation error on CI. Using a loose deadline because CI boxes are not reliable in how much CPU power they have available
2018-05-13Spelling and grammar fixesVille Skyttä
2018-05-11introduce name filtering for marker iteration againRonny Pfannschmidt
2018-05-04Attempt to fix flaky test on Python 2Bruno Oliveira
This test sometimes fails on AppVeyor with: ``` _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .0 = <listiterator object at 0x0549DC50> leaked_types = sum(1 for _ in gc.garbage > if 'PseudoFixtureDef' in str(_)) E UnicodeEncodeError: 'ascii' codec can't encode character u'\u263a' in position 23: ordinal not in range(128) test_request_garbage.py:19: UnicodeEncodeError ====================== 1 passed, 1 error in 1.39 seconds ====================== ``` Use our internal "safe_repr" function to handle Encode errors: who knows what objects are in garbage after all.
2018-05-03Escape whitespace only strings when diffing them on failed assertionsBruno Oliveira
Fix #3443
2018-05-03Merge pull request #3442 from RonnyPfannschmidt/fix-3441-markexpr-markstorageBruno Oliveira
Fix #3441 let mark expressions be populated from the modern marker storage
2018-05-03add tests for #3441Ronny Pfannschmidt
2018-05-03fix test_mark_option_custom - it used the legacy keyword storage for addign ↵Ronny Pfannschmidt
markers
2018-05-01Remove unused import to fix lintingBruno Oliveira
2018-05-02--pdb treats KeyboardInterrupt as exceptionBrian Maissy
2018-04-24Merge remote-tracking branch 'upstream/master' into merge-master-into-featuresBruno Oliveira
2018-04-23Merge remote-tracking branch 'upstream/features' into ↵Bruno Oliveira
ApaDoctor/disable-repeated-fixture
2018-04-23Add test for applying fixture twiceBruno Oliveira
Fix #2334
2018-04-19Merge pull request #3382 from feuillemorte/3290-improve-monkeypatchBruno Oliveira
#3290 improve monkeypatch
2018-04-15added indicative error when parametrizing an argument with a default valueBrian Maissy
2018-04-13#3290 Fix commentsfeuillemorte
2018-04-12Attempt to solve race-condition which corrupts .pyc files on WindowsBruno Oliveira
This uses of the `atomicwrites` library. This is very hard to create a reliable test for. Fix #3008
2018-04-12Merge pull request #3384 from nicoddemus/leak-frameBruno Oliveira
Reset reference to failed test frame before each test executes
2018-04-11Merge remote-tracking branch 'upstream/master' into merge-master-into-featuresBruno Oliveira
2018-04-11#3290 Added testfeuillemorte
2018-04-10Add acceptance test for #2798Bruno Oliveira
2018-04-10Merge pull request #3331 from tonybaloney/breakpoint_supportRonny Pfannschmidt
Support for the new builtin breakpoint function in Python 3.7
2018-04-06Fix issue #3372Tim Strazny
2018-04-05fix the record_property testRonny Pfannschmidt
2018-04-04Clear sys.last_* attributes before running an itemBruno Oliveira
Otherwise we will keep the last failed exception around forever Related to #2798
2018-04-03Remove unused pytestPDB importBruno Oliveira
2018-04-03fix record_property testRonny Pfannschmidt
2018-04-03remove a test that would fail because pytest is being used to test itselfAnthony Shaw
2018-03-29remove NodeMarkers, turn own_markers into a list and use iter_markers api ↵Ronny Pfannschmidt
exclusively
2018-03-29turn Markinfo into atts clsas, and return correct instances of it from ↵Ronny Pfannschmidt
node.get_marker
2018-03-29fix most of metafunc tests by mockingRonny Pfannschmidt
2018-03-29deprecate markinfo and fix up most marker scoping access while completely ↵Ronny Pfannschmidt
breaking metafunc testing
2018-03-29enable deep merging test - new structure fixed itRonny Pfannschmidt
2018-03-29port mark evaluation to the new storage and fix a bug in evaluationRonny Pfannschmidt
2018-03-28Fix tests that check that breakpoint function is configured/restoredBruno Oliveira
* Execute pytest in a subprocess in cases of tests which change global state * Parametrize with --pdb and without the flag
2018-03-29add broken testAnthony Shaw
2018-03-27Change pytest.raises to use match instead of matchesJeffrey Rackauckas
2018-03-27Update pytest.raises to raise a TypeError when an invalid keyword argument ↵Jeffrey Rackauckas
is passed.
2018-03-28add test for custom environment variableAnthony Shaw
2018-03-27Merge pull request #3307 from KKoukiou/rhv-qe-fixBruno Oliveira
logging.py: Don't change log level of the root logger to bigger numeric value
2018-03-27updates for code review recommendationsAnthony Shaw
2018-03-26logging.py: Don't change log level of the root logger to bigger numeric valueKaterina Koukiou
2018-03-23fix assertion when hypothesis is installed (which is should be for ↵Anthony Shaw
developing in pytest)
2018-03-23linting and removed double testAnthony Shaw
2018-03-23add tests to validate that --pdbcls custom debugger classes will be called ↵Anthony Shaw
when breakpoint() is used
2018-03-23"Added acceptance tests for configuration of sys.breakpointhook and ↵Anthony Shaw
resetting back when system default (pdb) is used""