clickable: Format with nixfmt-rfc-style
This commit is contained in:
parent
1b5cf9d0be
commit
25df994263
@ -1,7 +1,8 @@
|
|||||||
{ lib
|
{
|
||||||
, fetchFromGitLab
|
lib,
|
||||||
, python3Packages
|
fetchFromGitLab,
|
||||||
, stdenv
|
python3Packages,
|
||||||
|
stdenv,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
@ -26,40 +27,42 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
|
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests =
|
||||||
# Tests require docker
|
[
|
||||||
"test_cpp_plugin"
|
# Tests require docker
|
||||||
"test_html"
|
"test_cpp_plugin"
|
||||||
"test_python"
|
"test_html"
|
||||||
"test_qml_only"
|
"test_python"
|
||||||
"test_rust"
|
"test_qml_only"
|
||||||
"test_review"
|
"test_rust"
|
||||||
"test_click_build"
|
"test_review"
|
||||||
"test_no_device"
|
"test_click_build"
|
||||||
"test_no_file_temp"
|
"test_no_device"
|
||||||
"test_update"
|
"test_no_file_temp"
|
||||||
"test_lib_build"
|
"test_update"
|
||||||
"test_clean"
|
"test_lib_build"
|
||||||
"test_temp_exception"
|
"test_clean"
|
||||||
"test_create_interactive"
|
"test_temp_exception"
|
||||||
"test_create_non_interactive"
|
"test_create_interactive"
|
||||||
"test_kill"
|
"test_create_non_interactive"
|
||||||
"test_writable_image"
|
"test_kill"
|
||||||
"test_no_desktop_mode"
|
"test_writable_image"
|
||||||
"test_no_lock"
|
"test_no_desktop_mode"
|
||||||
"test_run_default_command"
|
"test_no_lock"
|
||||||
"test_run"
|
"test_run_default_command"
|
||||||
"test_no_container_mode_log"
|
"test_run"
|
||||||
"test_custom_mode_log"
|
"test_no_container_mode_log"
|
||||||
"test_skip_desktop_mode"
|
"test_custom_mode_log"
|
||||||
"test_log"
|
"test_skip_desktop_mode"
|
||||||
"test_custom_lock_file"
|
"test_log"
|
||||||
"test_launch_custom"
|
"test_custom_lock_file"
|
||||||
"test_launch"
|
"test_launch_custom"
|
||||||
"test_devices"
|
"test_launch"
|
||||||
"test_install"
|
"test_devices"
|
||||||
"test_skip_container_mode"
|
"test_install"
|
||||||
] ++
|
"test_skip_container_mode"
|
||||||
|
]
|
||||||
|
++
|
||||||
# There are no docker images available for the aarch64 architecutre
|
# There are no docker images available for the aarch64 architecutre
|
||||||
# which are required for tests.
|
# which are required for tests.
|
||||||
lib.optionals stdenv.isAarch64 [
|
lib.optionals stdenv.isAarch64 [
|
||||||
|
Loading…
Reference in New Issue
Block a user