tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.isort: disable two tests
Frederik Rietdijk
6 years ago
df8a386a
9f57b668
+1
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
isort
default.nix
+1
-1
pkgs/development/python-modules/isort/default.nix
···
1
{ lib, buildPythonPackage, fetchPypi, isPy27, futures, backports_functools_lru_cache, mock, pytest }:
2
3
let
4
-
skipTests = lib.optional isPy27 "test_standard_library_deprecates_user_issue_778";
5
testOpts = lib.concatMapStringsSep " " (t: "--deselect test_isort.py::${t}") skipTests;
6
in buildPythonPackage rec {
7
pname = "isort";
···
1
{ lib, buildPythonPackage, fetchPypi, isPy27, futures, backports_functools_lru_cache, mock, pytest }:
2
3
let
4
+
skipTests = [ "test_requirements_finder" "test_pipfile_finder" ] ++ lib.optional isPy27 "test_standard_library_deprecates_user_issue_778";
5
testOpts = lib.concatMapStringsSep " " (t: "--deselect test_isort.py::${t}") skipTests;
6
in buildPythonPackage rec {
7
pname = "isort";