forked from pallet/pallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpallet.clj
31 lines (27 loc) · 1.19 KB
/
pallet.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
;;; Pallet project configuration file
;;; By default, the pallet.api and pallet.crate namespaces are already referred.
;;; The pallet.crate.automated-admin-user/automated-admin-user us also referred.
(require
'[pallet.test-specs
:refer [remote-file-test rsync-test operations-test rolling-lift-test
partitioning-test exec-meta-test]]
'[pallet.crate.initd-test :refer [initd-test-spec]]
'[pallet.crate.nohup-test :refer [nohup-test-spec]])
(defproject pallet
:provider {:vmfest
{:variants
[{:node-spec
{:image {:os-family :ubuntu :os-version-matches "12.04"
:os-64-bit true}}
:group-suffix "u1204"
:selectors #{:default}}]}}
:groups [remote-file-test rsync-test
operations-test rolling-lift-test partitioning-test exec-meta-test
(group-spec "initd-test"
:extends [with-automated-admin-user
initd-test-spec]
:roles #{:live-test :default :initd})
(group-spec "nohup-test"
:extends [with-automated-admin-user
nohup-test-spec]
:roles #{:live-test :default :nohup})])