forked from mirrors/nixpkgs
pythonPackages.txtorcon: fix tests
There is a bug in the upstream package that causes one test to fail currently: https://github.com/meejah/txtorcon/issues/250 The test can be safely ignored but should be enabled once it's been fixed upstream.
This commit is contained in:
parent
2e4aded366
commit
6aee626c32
|
@ -26,8 +26,10 @@ buildPythonPackage rec {
|
|||
substituteInPlace requirements.txt --replace "ipaddress>=1.0.16" ""
|
||||
'';
|
||||
|
||||
# Skip a failing test until fixed upstream:
|
||||
# https://github.com/meejah/txtorcon/issues/250
|
||||
checkPhase = ''
|
||||
pytest .
|
||||
pytest --ignore=test/test_util.py .
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue