Merge pull request #264217 from pacien/visidata-2-11-1

visidata: 2.11 -> 2.11.1, praw: fix tests
This commit is contained in:
OTABI Tomoya 2023-11-01 18:15:35 +09:00 committed by GitHub
commit 331873c6dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 2 deletions

View File

@ -45,13 +45,13 @@
}:
buildPythonApplication rec {
pname = "visidata";
version = "2.11";
version = "2.11.1";
src = fetchFromGitHub {
owner = "saulpw";
repo = "visidata";
rev = "v${version}";
hash = "sha256-G/9paJFJsRfIxMJ2hbuVS7pxCfSUCK69DNV2DHi60qA=";
hash = "sha256-A8iYFdW30Em5pjGn3DRpaV0A7ixwfSzmIp8AgtPkBCI=";
};
propagatedBuildInputs = [

View File

@ -42,6 +42,11 @@ buildPythonPackage rec {
requests-toolbelt
];
disabledTestPaths = [
# tests requiring network
"tests/integration"
];
pythonImportsCheck = [
"praw"
];

View File

@ -45,6 +45,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTestPaths = [
# tests requiring network
"tests/integration"
];
pythonImportsCheck = [
"prawcore"
];