diff options
| author | Stephen Finucane <stephen@that.guru> | 2019-09-08 16:28:34 +0100 |
|---|---|---|
| committer | Stephen Finucane <stephen@that.guru> | 2019-09-08 16:41:18 +0100 |
| commit | f4275eff1f4eb563ce6cf7c0299d4f88950c82af (patch) | |
| tree | d7bf7a4057484523c9acdf86e06cea7b7f94b23c | |
| parent | cdab7910d780bab596e2daaadd01f3162b5ee652 (diff) | |
| download | patchwork-f4275eff1f4eb563ce6cf7c0299d4f88950c82af.tar patchwork-f4275eff1f4eb563ce6cf7c0299d4f88950c82af.tar.gz | |
tests: Mark 'test_series.test_duplicated' as expected failure
This has been failing fairly frequently in Travis [1] but I'm not able
to reproduce it locally. Skip things for now.
[1] https://travis-ci.org/getpatchwork/patchwork/jobs/582342631
Signed-off-by: Stephen Finucane <stephen@that.guru>
| -rw-r--r-- | patchwork/tests/test_series.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/patchwork/tests/test_series.py b/patchwork/tests/test_series.py index d78f7dc..deb9304 100644 --- a/patchwork/tests/test_series.py +++ b/patchwork/tests/test_series.py @@ -5,6 +5,7 @@ import mailbox import os +import unittest from django.test import TestCase @@ -172,6 +173,7 @@ class BaseSeriesTest(_BaseTestCase): self.assertSerialized(patches, [2]) self.assertSerialized(covers, [1]) + @unittest.expectedFailure def test_duplicated(self): """Series received on multiple mailing lists. |