-
When running tests in parallel |(for `-n` of one or more), I get this weird `internalerror` message. However, if I run the tests without the `-n 1` option, everything is fine.
```
; py.test --cov=wir…
-
This is a minor thing, but I thought I'd report it as I noticed it when doing a minimal testcase for another issue.
With this (broken) feature file:
```
Given foo
When bar
Then baz
```
we get:
```…
-
With Cucumber and Behave, scenario outline steps have their placeholders substituted with the real values from the current example before the step definition is looked up.
We have a library of steps …
lrowe updated
8 years ago
-
My library, [Hypothesis](http://hypothesis.readthedocs.org/en/latest/) potentially emits a number of warnings indicating that a test is in some way doing the wrong thing.
Currently these will only sh…
-
If not given, the behaviour should be as-is.
This will help with flaky tests like this:
```
==================================== ERRORS ====================================
_________________ ERROR a…
-
When I run `tox -e py35`, I get the following error:
```
GLOB sdist-make: /home/lahwaacz/Bbox/pg/python3/qutebrowser/setup.py
py35 create: /home/lahwaacz/Bbox/pg/python3/qutebrowser/.tox/py35
py35 in…
-
Hi,
I have the following structure with both traditional tests (`tests_nobdd_login.py`) and BDD-like tests:
```
├── features
│ └── auth
│ └── login.feature
├── __init__.py
├── testing.py
└── …
-
Currently BDD failures dump a truckload of information, but it's really hard to find out what actually went wrong. It'd be nice if we could output a summary like:
```
:open http://localhost:1234/foo.…
-
Hi there,
I am getting KeyError: 'nodeid' when running py.test with pytest-bdd installed. py.test seems to detect pytest-bdd plugin but it stops running when trying to load it. I am not sure whethe…
-
Given the following factories:
``` python
class BookFactory(factory.django.DjangoModelFactory):
title = factory.LazyAttribute(lambda x: faker.sentence(nb_words=4))
pub_date = factory.LazyAttr…