craft-parts: skip failing tests on aarch64
This commit is contained in:
parent
5ed8afee5e
commit
44f73650e8
1 changed files with 5 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
||||||
, squashfsTools
|
, squashfsTools
|
||||||
, setuptools
|
, setuptools
|
||||||
, setuptools-scm
|
, setuptools-scm
|
||||||
|
, stdenv
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -103,6 +104,10 @@ buildPythonPackage rec {
|
||||||
"tests/unit/packages/test_apt_cache.py"
|
"tests/unit/packages/test_apt_cache.py"
|
||||||
"tests/unit/packages/test_deb.py"
|
"tests/unit/packages/test_deb.py"
|
||||||
"tests/unit/packages/test_chisel.py"
|
"tests/unit/packages/test_chisel.py"
|
||||||
|
] ++ lib.optionals stdenv.isAarch64 [
|
||||||
|
# These tests have hardcoded "amd64" strings which fail on aarch64
|
||||||
|
"tests/unit/executor/test_environment.py"
|
||||||
|
"tests/unit/features/overlay/test_executor_environment.py"
|
||||||
];
|
];
|
||||||
|
|
||||||
passthru.updateScript = nix-update-script { };
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
Loading…
Reference in a new issue