Skip to content

Commit

Permalink
Merge pull request #333773 from fabaff/dvc-task-refactor
Browse files Browse the repository at this point in the history
python312Packages.dvc-task: disable flaky test
  • Loading branch information
fabaff authored Aug 11, 2024
2 parents 7a8baac + 23f1074 commit ae1a7dc
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions pkgs/development/python-modules/dvc-task/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools-scm,
kombu,
shortuuid,
celery,
fetchFromGitHub,
funcy,
kombu,
pytest-celery,
pytest-mock,
pytest-test-utils,
pytestCheckHook,
pythonOlder,
setuptools-scm,
shortuuid,
}:

buildPythonPackage rec {
Expand All @@ -31,10 +31,10 @@ buildPythonPackage rec {
build-system = [ setuptools-scm ];

dependencies = [
kombu
shortuuid
celery
funcy
kombu
shortuuid
];

nativeCheckInputs = [
Expand All @@ -46,11 +46,16 @@ buildPythonPackage rec {

pythonImportsCheck = [ "dvc_task" ];

disabledTests = [
# Test is flaky
"test_start_already_exists"
];

meta = with lib; {
description = "Celery task queue used in DVC";
homepage = "https://github.com/iterative/dvc-task";
changelog = "https://github.com/iterative/dvc-task/releases/tag/${version}";
license = licenses.asl20;
maintainers = [ ];
maintainers = with maintainers; [ fab ];
};
}

0 comments on commit ae1a7dc

Please sign in to comment.