python3Packages.pydicom: disable failing tests on aarch64
This commit is contained in:
parent
0755dee0b9
commit
ae6997cf97
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, isPy27
|
, isPy27
|
||||||
|
@ -49,6 +50,9 @@ buildPythonPackage {
|
||||||
# This test try to remove a dicom inside $HOME/.pydicom/data/ and download it again.
|
# This test try to remove a dicom inside $HOME/.pydicom/data/ and download it again.
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
"test_fetch_data_files"
|
"test_fetch_data_files"
|
||||||
|
] ++ lib.optionals stdenv.isAarch64 [
|
||||||
|
# https://github.com/pydicom/pydicom/issues/1386
|
||||||
|
"test_array"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in New Issue