diff options
author | Minijackson <minijackson@riseup.net> | 2018-08-10 11:08:13 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2018-08-10 11:08:13 +0200 |
commit | 134d820657c06cd5d6375994226ff67f1af79f3e (patch) | |
tree | 0d0026af36429fde439cada4f5dd0147a5d0df4a /default.nix | |
parent | b6f152345d707f1f6ec615b6850577cc6c8b0a21 (diff) | |
download | nix_repo-134d820657c06cd5d6375994226ff67f1af79f3e.tar.gz nix_repo-134d820657c06cd5d6375994226ff67f1af79f3e.zip |
Syntax error + forgot the cd
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/default.nix b/default.nix index c75c368..be4da92 100644 --- a/default.nix +++ b/default.nix | |||
@@ -100,32 +100,32 @@ in rec { | |||
100 | }; | 100 | }; |
101 | 101 | ||
102 | sinkTest = pkgs.writeShellScriptBin "sinkTest" '' | 102 | sinkTest = pkgs.writeShellScriptBin "sinkTest" '' |
103 | export HOME="$(mktemp -d)" | 103 | export HOME="$(mktemp -d)" |
104 | ./tests/clientapitest && | 104 | cd "${sink}" |
105 | ./tests/resourceconfigtest && | 105 | ./tests/clientapitest && |
106 | ./tests/storagetest && | 106 | ./tests/resourceconfigtest && |
107 | ./tests/domainadaptortest && | 107 | ./tests/storagetest && |
108 | ./tests/messagequeuetest && | 108 | ./tests/domainadaptortest && |
109 | ./tests/indextest && | 109 | ./tests/messagequeuetest && |
110 | ./tests/resourcecommunicationtest && | 110 | ./tests/indextest && |
111 | ./tests/pipelinetest && | 111 | ./tests/resourcecommunicationtest && |
112 | ./tests/querytest && | 112 | ./tests/pipelinetest && |
113 | ./tests/modelinteractivitytest && | 113 | ./tests/querytest && |
114 | ./tests/inspectiontest && | 114 | ./tests/modelinteractivitytest && |
115 | ./tests/accountstest && | 115 | ./tests/inspectiontest && |
116 | ./tests/testaccounttest && | 116 | ./tests/accountstest && |
117 | ./tests/dummyresourcemailtest && | 117 | ./tests/testaccounttest && |
118 | ./tests/interresourcemovetest && | 118 | ./tests/dummyresourcemailtest && |
119 | ./tests/notificationtest && | 119 | ./tests/interresourcemovetest && |
120 | ./tests/entitystoretest && | 120 | ./tests/notificationtest && |
121 | ./tests/upgradetest && | 121 | ./tests/entitystoretest && |
122 | ./tests/resourcecontroltest && | 122 | ./tests/upgradetest && |
123 | ./tests/dummyresourcetest | 123 | ./tests/resourcecontroltest && |
124 | ret=$? | 124 | ./tests/dummyresourcetest |
125 | rm -rf $HOME | 125 | ret=$? |
126 | return $ret | 126 | rm -rf $HOME |
127 | ''; | 127 | return $ret |
128 | }; | 128 | ''; |
129 | 129 | ||
130 | kube = stdenv.mkDerivation { | 130 | kube = stdenv.mkDerivation { |
131 | name = "kube"; | 131 | name = "kube"; |