-
Notifications
You must be signed in to change notification settings - Fork 1
/
tests.toml
58 lines (46 loc) · 2.04 KB
/
tests.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
test_format = 1.0
[default]
# ------------
# Tests to run
# ------------
# NB: the tests to run are automatically deduced by the CI script according to the
# content of the app's manifest. The declarations below allow to customize which
# tests are ran, possibly add special test suite to test special args, or
# declare which commits to test upgrade from.
#
# You can also decide (though this is discouraged!) to ban/ignore some tests,
exclude = ["change_url"] # changing url of a fediverse app is not supported
# For special usecases, sometimes you need to setup other things on the machine
# prior to installing the app (such as installing another app)
# (Remove this key entirely if not needed)
# preinstall = """
# sudo yunohost app install foobar
# sudo yunohost user list
# """
# -------------------------------
# Default args to use for install
# -------------------------------
# By default, the CI will automagically fill the 'standard' args
# such as domain, path, admin, is_public and password with relevant values
# and also install args with a "default" provided in the manifest..
# It should only make sense to declare custom args here for args with no default values
args.username = "username"
args.name = "name"
args.summary = "summary"
# args.language = "fr_FR" # NB : you should NOT need those lines unless for custom questions with no obvious/default value
# args.multisite = 0
# -------------------------------
# Commits to test upgrade from
# -------------------------------
# test upgrade from 29ef86ea663d4d9e7079c861adb613eaabf7800f - v1 version of package
test_upgrade_from.29ef86ea.name = "Upgrade from v1 version of package"
# test_upgrade_from.29ef86ea.args.foo = "bar"
# # This is an additional test suite
# [multisite]
#
# # On additional tests suites, you can decide to run only specific tests
#
# only = ["install.subdir"]
#
# args.language = "en_GB"
# args.multisite = 1