1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpinfo_ynh.git synced 2024-09-03 19:56:23 +02:00

Update tests.toml

Add tests for all PHP versions
This commit is contained in:
CodeShakingSheep 2024-08-26 11:06:51 -05:00 committed by GitHub
parent 1a485c9783
commit f700cafed6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,19 +6,35 @@ test_format = 1.0
# Tests to run
# ------------
exclude = ["install.private", "change_url"]
exclude = ["change_url"]
# -------------------------------
# Default args to use for install
# -------------------------------
args.phpversion = "7.4"
args.phpversion = "8.3"
# -------------------------------
# Commits to test upgrade from
# -------------------------------
[82_test]
[74_test]
only = ["install.subdir", "backup_restore", "upgrade" ]
args.phpversion = "7.4"
[80_test]
only = ["install.subdir", "backup_restore", "upgrade" ]
args.phpversion = "8.0"
[81_test]
only = ["install.subdir", "backup_restore", "upgrade" ]
args.phpversion = "8.1"
[82_test]
only = ["install.subdir", "backup_restore", "upgrade" ]
args.phpversion = "8.2"