1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mautrix_discord_ynh.git synced 2024-09-03 19:36:35 +02:00

Add tests.toml

This commit is contained in:
Florent 2024-01-15 08:53:32 +01:00 committed by Florent F
parent 3dfa5d9a50
commit ba800e8f7a

View file

@ -1,5 +1,3 @@
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/tests.v1.schema.json
test_format = 1.0 test_format = 1.0
[default] [default]
@ -8,71 +6,41 @@ test_format = 1.0
# Tests to run # Tests to run
# ------------ # ------------
# ------------------------------------------------------------------------------- # For special usecases, sometimes you need to setup other things on the machine
# EVERYTHING PAST THIS POINT IS OPTIONAL AND MOST LIKELY UNNECESSARY FOR NEW APPS # prior to installing the app (such as installing another app)
#-------------------------------------------------------------------------------- # (Remove this key entirely if not needed)
## Conventions in this sample: preinstall = """
## <- An actual comment sudo yunohost tools update apps
# <- uncommenting this should be a valid entry in 'tests.toml' sudo yunohost app install https://github.com/YunoHost-Apps/synapse_ynh/ -a "domain=$domain&server_name=$server_name&is_free_registration=$is_free_registration&jitsi_server=$jitsi_server" --force
"""
## 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,
## The test IDs to be used in only/exclude statements are:
## * install.root
## * install.subdir
## * install.nourl
## * install.multi
## * backup_restore
## * upgrade
## * upgrade.someCommitId
## * change_url
## NB: you should NOT need this except if you really have a good reason...
# exclude = ["install.private", "install.multi"]
## 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 # Default args to use for install
# ------------------------------- # -------------------------------
## By default, the CI will automagically fill the 'standard' args # By default, the CI will automagically fill the 'standard' args
## such as domain, path, admin, is_public and password with relevant values # such as domain, path, admin, is_public and password with relevant values
## and also install args with a "default" provided in the manifest.. # 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 # It should only make sense to declare custom args here for args with no default values
## NB: you should NOT need those lines unless for custom questions with no obvious/default value
# args.language = "fr_FR" args.botadmin = "@johndoe:server.name"
# args.multisite = 0 args.botusers = "server.name"
# ------------------------------- # -------------------------------
# Commits to test upgrade from # Commits to test upgrade from
# ------------------------------- # -------------------------------
## 00a1a6e7 is part of commit SHA, preferrably from 'master' branch # This is an additional test suite
## that points to valid install of previous version [multiple_botusers]
# test_upgrade_from.00a1a6e7.name = "Upgrade from 5.4" preinstall = """
# test_upgrade_from.00a1a6e7.args.foo = "bar" sudo yunohost tools update apps
sudo yunohost app install https://github.com/YunoHost-Apps/synapse_ynh/ -a "domain=$domain&server_name=$server_name&is_free_registration=$is_free_registration&jitsi_server=$jitsi_server" --force
"""
# On additional tests suites, you can decide to run only specific tests
## This is an additional test suite only = ["install.subdir"]
# [some_additional_testsuite]
## On additional tests suites, you can decide to run only specific tests args.botadmin = "@johndoe:server.name"
args.botusers = "@john:server.name,@jdoe:server.name,@janedoe:server.name"
# only = ["install.subdir"]
# args.language = "en_GB"
# args.multisite = 1