Skip to content

Commit 25df994

Browse files
committed
clickable: Format with nixfmt-rfc-style
1 parent 1b5cf9d commit 25df994

File tree

1 file changed

+41
-38
lines changed

1 file changed

+41
-38
lines changed

pkgs/by-name/cl/clickable/package.nix

Lines changed: 41 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
{ lib
2-
, fetchFromGitLab
3-
, python3Packages
4-
, stdenv
1+
{
2+
lib,
3+
fetchFromGitLab,
4+
python3Packages,
5+
stdenv,
56
}:
67

78
python3Packages.buildPythonApplication rec {
@@ -26,40 +27,42 @@ python3Packages.buildPythonApplication rec {
2627

2728
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
2829

29-
disabledTests = [
30-
# Tests require docker
31-
"test_cpp_plugin"
32-
"test_html"
33-
"test_python"
34-
"test_qml_only"
35-
"test_rust"
36-
"test_review"
37-
"test_click_build"
38-
"test_no_device"
39-
"test_no_file_temp"
40-
"test_update"
41-
"test_lib_build"
42-
"test_clean"
43-
"test_temp_exception"
44-
"test_create_interactive"
45-
"test_create_non_interactive"
46-
"test_kill"
47-
"test_writable_image"
48-
"test_no_desktop_mode"
49-
"test_no_lock"
50-
"test_run_default_command"
51-
"test_run"
52-
"test_no_container_mode_log"
53-
"test_custom_mode_log"
54-
"test_skip_desktop_mode"
55-
"test_log"
56-
"test_custom_lock_file"
57-
"test_launch_custom"
58-
"test_launch"
59-
"test_devices"
60-
"test_install"
61-
"test_skip_container_mode"
62-
] ++
30+
disabledTests =
31+
[
32+
# Tests require docker
33+
"test_cpp_plugin"
34+
"test_html"
35+
"test_python"
36+
"test_qml_only"
37+
"test_rust"
38+
"test_review"
39+
"test_click_build"
40+
"test_no_device"
41+
"test_no_file_temp"
42+
"test_update"
43+
"test_lib_build"
44+
"test_clean"
45+
"test_temp_exception"
46+
"test_create_interactive"
47+
"test_create_non_interactive"
48+
"test_kill"
49+
"test_writable_image"
50+
"test_no_desktop_mode"
51+
"test_no_lock"
52+
"test_run_default_command"
53+
"test_run"
54+
"test_no_container_mode_log"
55+
"test_custom_mode_log"
56+
"test_skip_desktop_mode"
57+
"test_log"
58+
"test_custom_lock_file"
59+
"test_launch_custom"
60+
"test_launch"
61+
"test_devices"
62+
"test_install"
63+
"test_skip_container_mode"
64+
]
65+
++
6366
# There are no docker images available for the aarch64 architecutre
6467
# which are required for tests.
6568
lib.optionals stdenv.isAarch64 [

0 commit comments

Comments
 (0)