mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
Merge pull request #154340 from fabaff/fix-aioconsole
python3Packages.aioconsole: disable failing tests
This commit is contained in:
commit
bd25df6e1f
@ -17,7 +17,9 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "aioconsole";
|
||||
version = "0.3.3";
|
||||
disabled = pythonOlder "3.6";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vxgmichel";
|
||||
@ -36,7 +38,13 @@ buildPythonPackage rec {
|
||||
--replace "--cov aioconsole --count 2" ""
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "aioconsole" ];
|
||||
disabledTests = [
|
||||
"test_interact_syntax_error"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aioconsole"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Asynchronous console and interfaces for asyncio";
|
||||
|
Loading…
Reference in New Issue
Block a user