diff options
author | drebs <drebs@riseup.net> | 2017-09-16 08:58:34 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2017-09-20 18:55:59 -0300 |
commit | 8110ef8687b155df7b24a6c083404f9624e6a160 (patch) | |
tree | 40f32d15c1fdd4eb5dbc1df553c6f094a6ec40ac /tests/conftest.py | |
parent | 5518364b969f764e06eec34563ae804413253107 (diff) |
[test] add e2e test for incoming mail pipeline
I had to include part of the bonafide source code because it was the
easiest way to interact with the webapp.
Closes: #8941
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index ea8dfc5c..3eef674d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -61,7 +61,7 @@ def pytest_collection_modifyitems(items, config): # select/deselect tests based on a blacklist and the subdir option given in # command line - blacklist = ['benchmarks', 'responsiveness'] + blacklist = ['benchmarks', 'responsiveness', 'e2e'] subdir = config.getoption('subdir') selected, deselected = _select_subdir(subdir, blacklist, items) config.hook.pytest_deselected(items=deselected) |