Merge pull request #680 from tahoe-lafs/3274.skip-broken-eliot-test

Skip the broken eliot test on CI

Fixes: ticket:3274
This commit is contained in:
Jean-Paul Calderone 2020-02-11 12:30:25 -05:00 committed by GitHub
commit 4bf096218f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

0
newsfragments/3274.minor Normal file
View File

View File

@ -14,6 +14,10 @@ buildPythonPackage rec {
--replace "boltons >= 19.0.1" boltons
# depends on eliot.prettyprint._main which we don't have here.
rm eliot/tests/test_prettyprint.py
# Fails intermittently.
substituteInPlace eliot/tests/test_validation.py \
--replace "def test_omitLoggerFromActionType" "def xtest_omitLoggerFromActionType"
'';
checkInputs = [ testtools pytest hypothesis ];