Skip to content

Commit

Permalink
chore: style
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Nov 3, 2024
1 parent c210d70 commit 90610ee
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions pkgs/development/python-modules/ibis-framework/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@
typing-extensions,
}:
let
testBackends = [ "duckdb" "sqlite" ];
testBackends = [
"duckdb"
"sqlite"
];

ibisTestingData = fetchFromGitHub {
name = "ibis-testing-data";
Expand Down Expand Up @@ -94,7 +97,10 @@ buildPythonPackage rec {
name = "ibis-framework-arrow-18.patch";
url = "https://github.com/ibis-project/ibis/commit/5dc549b22c2eca29a11a31fb29deef7c1466a204.patch";
hash = "sha256-4i/g2uixdlkbE6x659wzZJ91FZpzwOVkF6ZeXkiCP3I=";
excludes = [ "poetry.lock" "requirements-dev.txt" ];
excludes = [
"poetry.lock"
"requirements-dev.txt"
];
})
];

Expand Down Expand Up @@ -132,7 +138,10 @@ buildPythonPackage rec {
pytest-xdist
] ++ lib.concatMap (name: optional-dependencies.${name}) testBackends;

pytestFlagsArray = [ "-m" "'${lib.concatStringsSep " or " testBackends} or core'" ];
pytestFlagsArray = [
"-m"
"'${lib.concatStringsSep " or " testBackends} or core'"
];

disabledTests = [
# tries to download duckdb extensions
Expand Down

0 comments on commit 90610ee

Please sign in to comment.