Skip to content

Commit

Permalink
python.pkgs.pandas: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Jul 23, 2018
1 parent cb37c93 commit f4e179e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/pandas/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ in buildPythonPackage rec {
chmod a+x pbcopy pbpaste
export PATH=$(pwd):$PATH
'' + ''
py.test $out/${python.sitePackages}/pandas --skip-slow --skip-network -k "$disabledTests"
# pandas no longer seems to distribute datasets for IO tests
py.test $out/${python.sitePackages}/pandas --ignore=io --skip-slow --skip-network -k "$disabledTests"
runHook postCheck
'';

Expand Down

1 comment on commit f4e179e

@dotlambda
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.